Home | History | Annotate | Download | only in xml
      1 package test.dependent.xml;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class GroupDependencySampleTest {
      6 
      7   @Test(groups = "a")
      8   public void a1() {}
      9 
     10   @Test(groups = "b")
     11   public void b1() {}
     12 
     13   @Test(groups = "c")
     14   public void c1() {}
     15 }
     16