01: package test.interleavedorder;
02:
03: public class BaseTestClass {
04: /**
05: * @testng.test
06: */
07: public void testOne() {
08: InterleavedInvocationTest.LOG.append(getClass().getName()
09: + ".testOne");
10: }
11:
12: /**
13: * @testng.test
14: */
15: public void testTwo() {
16: InterleavedInvocationTest.LOG.append(getClass().getName()
17: + ".testTwo");
18: }
19:
20: /**
21: * @testng.test
22: */
23: public void testThree() {
24: InterleavedInvocationTest.LOG.append(getClass().getName()
25: + ".testThree");
26: }
27: }
|