01: package test.failedconfs;
02:
03: public class Test2 {
04: /**
05: * @testng.test
06: */
07: public void testMethod1() {
08: System.out.println("testMethod21");
09: FailedBeforeTestMethodConfigurationBehaviorTest.s_noFailureClassMethods++;
10: }
11:
12: /**
13: * @testng.test
14: */
15: public void testMethod2() {
16: System.out.println("testMethod22");
17: FailedBeforeTestMethodConfigurationBehaviorTest.s_noFailureClassMethods++;
18: }
19: }
|