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