01: package test.testng106; 02: 03: import org.testng.annotations.BeforeSuite; 04: import org.testng.annotations.Test; 05: 06: /** 07: * This class/interface 08: */ 09: public class Test1 { 10: @Test 11: public void method1() { 12: System.out.println("method1"); 13: FailingSuiteFixture.s_invocations++; 14: } 15: }