01: package test.dependsongroups;
02:
03: public class TestFixture2 {
04: /**
05: * @testng.before-method groups="test" dependsOnGroups="testgroup"
06: */
07: public void setup() {
08: System.out.println("TestFixture2 setup");
09: }
10:
11: /**
12: * @testng.test groups="test"
13: */
14: public void testMethod() {
15: System.out.println("test method");
16: }
17: }
|