01: package test.dependsongroup; 02: 03: import org.testng.annotations.BeforeTest; 04: 05: public class TestFixture1 { 06: @BeforeTest(groups={"test","testgroup"}) 07: public void setup() { 08: } 09: 10: }