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