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