01: package test.interleavedorder;
02:
03: public class TestChild2 extends BaseTestClass {
04: /**
05: * @testng.before-class
06: */
07: public void beforeTestChildTwoClass() {
08: InterleavedInvocationTest.LOG.append(getClass().getName()
09: + ".beforeTestChildTwoClass");
10: }
11:
12: /**
13: * @testng.after-class
14: */
15: public void afterTestChildTwoClass() {
16: InterleavedInvocationTest.LOG.append(getClass().getName()
17: + ".afterTestChildTwoClass");
18: }
19: }
|