1 package test.dependsongroup;
2 
3 import org.testng.annotations.Test;
4 
5 @Test(groups = { "second" }, dependsOnGroups = { "zero" })
6 public class SecondSampleTest {
7 
8   @Test
secondA()9   public void secondA() {
10 //    System.out.println("secondA");
11   }
12 
13   @Test
secondB()14   public void secondB() {
15 //    System.out.println("secondB");
16   }
17 
18 }