• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.testng106;
2 
3 import org.testng.annotations.Test;
4 
5 
6 /**
7  * This class/interface
8  */
9 public class Test2 {
10   @Test
method2()11   public void method2() {
12     System.out.println("method2");
13     FailingSuiteFixture.s_invocations++;
14   }
15 
16   @Test
method3()17   public void method3() {
18     System.out.println("method3");
19     FailingSuiteFixture.s_invocations++;
20   }
21 }
22