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