blob: 5c10446cfcc3d8d1c856c29f8c88e320d52aeda0 [file] [log] [blame]
package test.interleavedorder;
public class TestChild2 extends BaseTestClass {
/**
* @testng.before-class
*/
public void beforeTestChildTwoClass() {
InterleavedInvocationTest.LOG.append(getClass().getName() + ".beforeTestChildTwoClass");
}
/**
* @testng.after-class
*/
public void afterTestChildTwoClass() {
InterleavedInvocationTest.LOG.append(getClass().getName() + ".afterTestChildTwoClass");
}
}