Home | History | Annotate | Download | only in dependent
      1 package test.dependent;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 @Test(groups = { "checkin" })
      6 public class MultiGroup1SampleTest {
      7 
      8   @Test(groups = {"a"})
      9   public void testA() {
     10 
     11   }
     12 
     13   public void test1() throws Exception {
     14     throw new Exception("fail");
     15   }
     16 }
     17