01: package test.tmp; 02: 03: import org.testng.ITestContext; 04: import org.testng.annotations.Test; 05: 06: public class InjectTest { 07: 08: @Test 09: public void t(ITestContext tc) { 10: System.out.println("ITestContext:" + tc); 11: } 12: }