01: package test.dependent;
02:
03: /**
04: * This class
05: *
06: * @author cbeust
07: */
08: public class SampleDependentMethods4 {
09:
10: /**
11: * @testng.test
12: */
13: public void step1() {
14: }
15:
16: /**
17: * @testng.test dependsOnMethods = "step1"
18: */
19: public void step2() {
20: assert false : "Problem in step2";
21: }
22:
23: /**
24: * @testng.test dependsOnMethods = "step2"
25: */
26: public void step3() {
27: }
28: }
|