• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.dependent;
2 
3 import org.testng.annotations.Test;
4 
5 /**
6  * This class
7  *
8  * @author cbeust
9  */
10 public class SampleDependentMethods6 {
11   @Test(dependsOnMethods = { "step2" })
step1()12   public void step1() {
13   }
14 
15   @Test(dependsOnMethods = { "step1" })
step2()16   public void step2() {
17   }
18 }
19