01: package test.dependsongroup;
02:
03: import org.testng.annotations.BeforeTest;
04: import org.testng.annotations.Test;
05:
06: public class TestFixture2 {
07: @BeforeTest(groups={"test"},dependsOnGroups={"testgroup"})
08: public void setup() {
09: }
10:
11: @Test(groups={"test"})
12: //@@
13: public void testMethod() {
14: }
15: }
|