blob: 44b71211c9b4be7ae1b76ee1ce359c4253de1bae [file] [log] [blame]
package test.tmp;
import org.testng.ITestContext;
import org.testng.annotations.Test;
public class InjectTest {
@Test
public void t(ITestContext tc) {
System.out.println("ITestContext:" + tc);
}
}