01: package test.testng106;
02:
03: import org.testng.annotations.Test;
04:
05: /**
06: * This class/interface
07: */
08: public class Test2 {
09: @Test
10: public void method2() {
11: System.out.println("method2");
12: FailingSuiteFixture.s_invocations++;
13: }
14:
15: @Test
16: public void method3() {
17: System.out.println("method3");
18: FailingSuiteFixture.s_invocations++;
19: }
20: }
|