01: package test.dependent;
02:
03: public class TestngBaseTest {
04: /**
05: * @testng.before-class
06: */
07: public void setUp() throws Exception {
08: // System.out.println("++ TestngBaseTest.setUp");
09: }
10:
11: /**
12: * @testng.after-class
13: */
14: public void tearDown() throws Exception {
15: // System.out.println("++ TestngBaseTest.tearDown");
16: }
17:
18: /**
19: * @testng.test
20: */
21: public void test0() {
22: // System.out.println("+. TestngBaseTest.test0");
23: }
24: }
|