01: package test.configuration; 02: 03: import org.testng.annotations.Test; 04: 05: public class BaseGroupsBSampleTest extends Base { 06: @Test(groups="foo") 07: public void b() { 08: // System.out.println( "b" ); 09: } 10: }