blob: 8bacf6ab93da3284338f176ed5f4a3f411696a15 [file] [log] [blame]
package test.superclass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
@Test
public class Base2 {
@BeforeClass
public void bc() {
ppp("BEFORE_CLASS");
}
@BeforeMethod
public void bm() {
ppp("BEFORE_METHOD");
}
public void tbase() {
ppp("TEST IN BASE");
}
private static void ppp(String s) {
if (false) {
System.out.println("[Base] " + s);
}
}
}