当前位置: 首页>>代码示例>>Java>>正文


Java TestFactory类代码示例

本文整理汇总了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);
        }
    });
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:26,代码来源:ParallelTestRunner.java

示例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);
        }
    });
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:26,代码来源:ParallelTestRunner.java

示例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();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:35,代码来源:ScriptTest.java

示例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();
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:33,代码来源:ScriptTest.java


注:本文中的jdk.nashorn.internal.test.framework.TestFinder.TestFactory类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。