01: package test.regression.groupsordering; 02: 03: import org.testng.annotations.Test; 04: 05: public class B extends Base { 06: 07: @Test(groups="a") 08: public void testB() throws Exception { 09: Base.s_childBWasRun = true; 10: } 11: }