blob: baf474afcea9fbd69b353fa632d860bb12c8db06 [file] [log] [blame]
package test.interleavedorder;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
public class TestChild1 extends BaseTestClass {
@BeforeClass
public void beforeTestChildOneClass() {
ppp("beforeTestChild1Class");
InterleavedInvocationTest.LOG.add("beforeTestChild1Class");
}
@AfterClass
public void afterTestChildOneClass() {
ppp("afterTestChild1Class");
InterleavedInvocationTest.LOG.add("afterTestChild1Class");
}
private void ppp(String s) {
if (false) {
System.out.println("[TestChild1] " + s);
}
}
}