blob: b7ee19e0c31dcf1a4577512df98b34703798a626 [file] [log] [blame]
package test.tmp;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class B extends C {
public static final String G = "group";
@BeforeMethod
public void bm() {
System.out.println("B.bm");
}
@Test
public void btest1() {
System.out.println("B.btest1");
}
}