本文整理汇总了Java中jdk.nashorn.internal.test.framework.TestFinder.TestFactory类的典型用法代码示例。如果您正苦于以下问题:Java TestFactory类的具体用法?Java TestFactory怎么用?Java TestFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TestFactory类属于jdk.nashorn.internal.test.framework.TestFinder包,在下文中一共展示了TestFactory类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: suite
import jdk.nashorn.internal.test.framework.TestFinder.TestFactory; //导入依赖的package包/类
private void suite() throws Exception {
Locale.setDefault(new Locale(""));
System.setOut(outputStream());
final TestFactory<ScriptRunnable> testFactory = new TestFactory<ScriptRunnable>() {
@Override
public ScriptRunnable createTest(final String framework, final File testFile, final List<String> engineOptions, final Map<String, String> testOptions, final List<String> arguments) {
return new ScriptRunnable(framework, testFile, engineOptions, testOptions, arguments);
}
@Override
public void log(final String msg) {
System.err.println(msg);
}
};
TestFinder.findAllTests(tests, orphans, testFactory);
Collections.sort(tests, new Comparator<ScriptRunnable>() {
@Override
public int compare(final ScriptRunnable o1, final ScriptRunnable o2) {
return o1.testFile.compareTo(o2.testFile);
}
});
}
示例2: suite
import jdk.nashorn.internal.test.framework.TestFinder.TestFactory; //导入依赖的package包/类
private void suite() throws Exception {
Locale.setDefault(new Locale(""));
System.setOut(outputStream());
final TestFactory<ScriptRunnable> testFactory = new TestFactory<ScriptRunnable>() {
@Override
public ScriptRunnable createTest(String framework, File testFile, List<String> engineOptions, Map<String, String> testOptions, List<String> arguments) {
return new ScriptRunnable(framework, testFile, engineOptions, testOptions, arguments);
}
@Override
public void log(String msg) {
System.err.println(msg);
}
};
TestFinder.findAllTests(tests, orphans, testFactory);
Collections.sort(tests, new Comparator<ScriptRunnable>() {
@Override
public int compare(final ScriptRunnable o1, final ScriptRunnable o2) {
return o1.testFile.compareTo(o2.testFile);
}
});
}
示例3: suite
import jdk.nashorn.internal.test.framework.TestFinder.TestFactory; //导入依赖的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: suite
import jdk.nashorn.internal.test.framework.TestFinder.TestFactory; //导入依赖的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();
}