01: package test.dependent;
02:
03: public class QueueTest {
04: /**
05: * @testng.test
06: */
07: public void test1() {
08: System.out.println("inside test1");
09: }
10:
11: /**
12: * @testng.test dependsOnMethods = "test1"
13: *
14: */
15: public void test2() {
16: System.out.println("inside test2");
17: }
18:
19: /**
20: * @testng.test dependsOnMethods = "test2"
21: *
22: */
23: public void test3() {
24: System.out.println("inside test3");
25: }
26: }
|