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