本文整理汇总了Java中org.testng.ITest类的典型用法代码示例。如果您正苦于以下问题:Java ITest类的具体用法?Java ITest怎么用?Java ITest使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ITest类属于org.testng包,在下文中一共展示了ITest类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: intercept
import org.testng.ITest; //导入依赖的package包/类
@Override
public List<IMethodInstance> intercept(final List<IMethodInstance> methods, final ITestContext context) {
Collections.sort(methods, new Comparator<IMethodInstance>() {
@Override
public int compare(final IMethodInstance mi1, final IMethodInstance mi2) {
// get test instances to order the tests.
final Object o1 = mi1.getInstance();
final Object o2 = mi2.getInstance();
if (o1 instanceof ITest && o2 instanceof ITest) {
return ((ITest)o1).getTestName().compareTo(((ITest)o2).getTestName());
}
// something else, don't care about the order
return 0;
}
});
return methods;
}
示例2: intercept
import org.testng.ITest; //导入依赖的package包/类
@Override
public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {
Collections.sort(methods, new Comparator<IMethodInstance>() {
@Override
public int compare(final IMethodInstance mi1, final IMethodInstance mi2) {
// get test instances to order the tests.
final Object o1 = mi1.getInstance();
final Object o2 = mi2.getInstance();
if (o1 instanceof ITest && o2 instanceof ITest) {
return ((ITest)o1).getTestName().compareTo(((ITest)o2).getTestName());
} else {
// something else, don't care about the order
return 0;
}
}
});
return methods;
}
示例3: suite
import org.testng.ITest; //导入依赖的package包/类
/**
* Creates a test factory for the set of .js source tests.
*
* @return a Object[] of test objects.
* @throws Exception upon failure
*/
@SuppressWarnings("static-method")
@Factory
public Object[] suite() throws Exception {
Locale.setDefault(new Locale(""));
final List<ITest> tests = new ArrayList<>();
final Set<String> orphans = new TreeSet<>();
final TestFactory<ITest> testFactory = new TestFactory<ITest>() {
@Override
public ITest createTest(final String framework, final File testFile, final List<String> engineOptions, final Map<String, String> testOptions, final List<String> scriptArguments) {
return new ScriptRunnable(framework, testFile, engineOptions, testOptions, scriptArguments);
}
@Override
public void log(final String msg) {
org.testng.Reporter.log(msg, true);
}
};
TestFinder.findAllTests(tests, orphans, testFactory);
if (System.getProperty(TEST_JS_INCLUDES) == null) {
tests.add(new OrphanTestFinder(orphans));
}
return tests.toArray();
}
示例4: findMethodName
import org.testng.ITest; //导入依赖的package包/类
@BeforeMethod(alwaysRun = true)
public void findMethodName(Method method) {
if (this instanceof ITest) {
name = ((ITest) this).getTestName();
} else {
name = method.getName();
}
}
示例5: suite
import org.testng.ITest; //导入依赖的package包/类
/**
* Creates a test factory for the set of .js source tests.
*
* @return a Object[] of test objects.
*/
@Factory
public Object[] suite() throws Exception {
Locale.setDefault(new Locale(""));
final List<ITest> tests = new ArrayList<>();
final Set<String> orphans = new TreeSet<>();
final TestFactory<ITest> testFactory = new TestFactory<ITest>() {
@Override
public ITest createTest(final String framework, final File testFile, final List<String> engineOptions, final Map<String, String> testOptions, final List<String> scriptArguments) {
return new ScriptRunnable(framework, testFile, engineOptions, testOptions, scriptArguments);
}
@Override
public void log(String msg) {
org.testng.Reporter.log(msg, true);
}
};
TestFinder.findAllTests(tests, orphans, testFactory);
if (System.getProperty(TEST_JS_INCLUDES) == null) {
tests.add(new OrphanTestFinder(orphans));
}
return tests.toArray();
}
示例6: getTestCaseNumber
import org.testng.ITest; //导入依赖的package包/类
public static String getTestCaseNumber(ITest testClass) {
String testName = testClass.getTestName();
return testName.contains("E4_") ? testName.split("E4")[1].split("_")[1] :
testName.split("TC")[1].split("_")[1];
}