Home | History | Annotate | Download | only in name
      1 package test.name;
      2 
      3 import org.testng.Assert;
      4 import org.testng.annotations.Test;
      5 
      6 @Test(testName = "NAME")
      7 public class NameSample {
      8 
      9   @Test
     10   public void test() {
     11     Assert.assertTrue(true);
     12   }
     13 }
     14