Home | History | Annotate | Download | only in p2
      1 package test.tmp.p2;
      2 
      3 import static org.testng.AssertJUnit.assertNotNull;
      4 
      5 import org.testng.annotations.Test;
      6 
      7 public class ServiceTest {
      8   @Test(groups = {"group1"})
      9     public void service() {
     10         assertNotNull(null);
     11     }
     12 }