1 package test.regression.groupsordering; 2 3 4 import org.testng.annotations.Test; 5 6 public class B extends Base { 7 8 @Test(groups= "a") testB()9 public void testB() throws Exception { 10 Base.s_childBWasRun= true; 11 } 12 } 13