1 package test.dependsongroup; 2 3 import org.testng.annotations.BeforeTest; 4 5 6 public class TestFixture1 { 7 @BeforeTest(groups={"test", "testgroup"}) 8 public void setup() { 9 } 10 11 } 12