blob: 8cf04b02860818bf9c6a84cfce8fcc9c85d54b47 [file] [log] [blame]
package test.tmp;
import org.testng.Reporter;
import org.testng.annotations.Test;
public class TestNGBug {
// @Configuration(beforeTestMethod = true)
public void init() {
ppp("Base.init()");
}
@Test
public void test1() {
Reporter.log("Child.test1");
}
@Test(enabled = false)
public void test2() {
Reporter.log("Child.test2");
}
@Test(groups = "a")
public void test3() {
Reporter.log("Child.test3");
}
private void ppp(String string) {
System.out.println("[TestNGBug] " + string);
}
}