1 package test.name;
2 
3 import org.testng.Assert;
4 import org.testng.annotations.Test;
5 
6 public class NoNameSample {
7 
8   @Test
test()9   public void test() {
10     Assert.assertTrue(true);
11   }
12 }
13