Home | History | Annotate | Download | only in testng106
      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
     11   public void method2() {
     12     System.out.println("method2");
     13     FailingSuiteFixture.s_invocations++;
     14   }
     15 
     16   @Test
     17   public void method3() {
     18     System.out.println("method3");
     19     FailingSuiteFixture.s_invocations++;
     20   }
     21 }
     22