1 package test.sample; 2 3 import org.testng.annotations.Test; 4 5 6 /** 7 * @author Cedric Beust, Apr 30, 2004 8 * 9 */ 10 public class BaseSample1 { 11 12 @Test(groups = { "odd" }) 13 public void method1() { 14 } 15 16 } 17