01: package test.sample;
02:
03: /**
04: * This class
05: *
06: * @author Cedric Beust, Apr 26, 2004
07: */
08:
09: public class Sample2 {
10:
11: // @Configuration(beforeTestMethod = true)
12: // public void beforeTestMethod() {
13: // }
14: //
15: // @Configuration(afterTestMethod = true)
16: // public void afterTestMethod() {
17: // }
18: //
19: // @Configuration(beforeTestClass= true)
20: // public void beforeTestClass() {
21: // }
22: //
23: // @Configuration(afterTestClass= true)
24: // public void afterTestClass() {
25: // }
26:
27: /**
28: * @testng.test
29: */
30: public void method1() {
31: // System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD1");
32: }
33:
34: /**
35: * @testng.test
36: */
37: public void method2() {
38: // System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD2");
39: }
40:
41: /**
42: * @testng.test
43: */
44: public void method3() {
45: // System.out.println("@@@@@@@@@@@@@@@@@@@ METHOD3");
46: }
47:
48: }
|