• 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 Test1 {
10   @Test
method1()11   public void method1() {
12     System.out.println("method1");
13     FailingSuiteFixture.s_invocations++;
14   }
15 }
16