01: package test.dependent;
02:
03: /**
04: * This class
05: *
06: * @author cbeust
07: */
08: public class SampleDependentMethods6 {
09: /**
10: * @testng.test dependsOnMethods = "step2"
11: */
12: public void step1() {
13: }
14:
15: /**
16: * @testng.test dependsOnMethods = "step1"
17: */
18: public void step2() {
19: }
20: }
|