1 package test.configuration; 2 3 import org.testng.annotations.Test; 4 5 public class BaseGroupsBSampleTest extends Base { 6 @Test(groups = "foo") b()7 public void b() { 8 // System.out.println( "b" ); 9 } 10 }