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


Java JvmTestSuiteSpec类代码示例

本文整理汇总了Java中org.gradle.jvm.test.JvmTestSuiteSpec的典型用法代码示例。如果您正苦于以下问题:Java JvmTestSuiteSpec类的具体用法?Java JvmTestSuiteSpec怎么用?Java JvmTestSuiteSpec使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


JvmTestSuiteSpec类属于org.gradle.jvm.test包,在下文中一共展示了JvmTestSuiteSpec类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createJvmTestSuiteBinaries

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
/**
 * Create binaries for test suites. TODO: This should really be a @ComponentBinaries rule, but at this point we have no clue what the concrete binary type is, so everything has to be duplicated in
 * specific plugins. See usages for example.
 */
public static void createJvmTestSuiteBinaries(ModelMap<BinarySpec> testBinaries,
                                              PlatformResolvers platformResolver,
                                              JvmTestSuiteSpec testSuite,
                                              JavaToolChainRegistry toolChains,
                                              Class<? extends JvmTestSuiteBinarySpec> testSuiteBinary) {
    JvmComponentSpec testedComponent = testSuite.getTestedComponent();
    if (testedComponent == null) {
        // standalone test suite
        createJvmTestSuiteBinary(testBinaries, testSuiteBinary, testSuite, null, toolChains, platformResolver);
    } else {
        // component under test
        for (final JvmBinarySpec testedBinary : testedBinariesOf(testSuite)) {
            createJvmTestSuiteBinary(testBinaries, testSuiteBinary, testSuite, testedBinary, toolChains, platformResolver);
        }
    }
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:21,代码来源:JvmTestSuiteRules.java

示例2: renderDetails

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
@Override
protected void renderDetails(T binary, TextReportBuilder builder) {
    JvmTestSuiteSpec testSuite = binary.getTestSuite();
    JvmComponentSpec testedComponent = testSuite.getTestedComponent();
    if (testedComponent!=null) {
        builder.item("component under test", testedComponent.getDisplayName());
    }
    JvmBinarySpec testedBinary = binary.getTestedBinary();
    if (testedBinary != null) {
        builder.item("binary under test", testedBinary.getDisplayName());
    }
    super.renderDetails(binary, builder);
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:14,代码来源:JvmTestSuiteBinaryRenderer.java

示例3: namingSchemeFor

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
private static BinaryNamingScheme namingSchemeFor(JvmTestSuiteSpec testSuiteSpec, JvmBinarySpec testedBinary, List<JavaPlatform> selectedPlatforms, JavaPlatform platform) {
    BinaryNamingScheme namingScheme = DefaultBinaryNamingScheme.component(testSuiteSpec.getName())
        .withBinaryType("binary") // not a 'Jar', not a 'test'
        .withRole("assembly", true)
        .withVariantDimension(platform, selectedPlatforms);
    if (testedBinary != null) {
        return namingScheme.withVariantDimension(((BinarySpecInternal) testedBinary).getProjectScopedName());
    }
    return namingScheme;
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:11,代码来源:JvmTestSuiteRules.java

示例4: createJvmTestSuiteBinaries

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
@ComponentBinaries
public static void createJvmTestSuiteBinaries(ModelMap<BinarySpec> testBinaries,
                                              PlatformResolvers platformResolver,
                                              JvmTestSuiteSpec testSuite,
                                              JavaToolChainRegistry toolChains) {
    JvmTestSuiteRules.createJvmTestSuiteBinaries(testBinaries, platformResolver, testSuite, toolChains, JUnitTestSuiteBinarySpec.class);
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:8,代码来源:JUnitTestSuitePlugin.java

示例5: testedBinariesOf

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
private static Collection<JvmBinarySpec> testedBinariesOf(JvmTestSuiteSpec testSuite) {
    return testedBinariesWithType(JvmBinarySpec.class, testSuite);
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:4,代码来源:JvmTestSuiteRules.java

示例6: testedBinariesWithType

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
private static <S> Collection<S> testedBinariesWithType(Class<S> type, JvmTestSuiteSpec testSuite) {
    VariantComponentSpec spec = (VariantComponentSpec) testSuite.getTestedComponent();
    return spec.getBinaries().withType(type).values();
}
 
开发者ID:lxxlxx888,项目名称:Reer,代码行数:5,代码来源:JvmTestSuiteRules.java

示例7: addTestSuiteSourceSets

import org.gradle.jvm.test.JvmTestSuiteSpec; //导入依赖的package包/类
@Defaults
public void addTestSuiteSourceSets(@Each JvmTestSuiteSpec component) {
    component.getSources().create("clojure", ClojureSourceSet.class);
}
 
开发者ID:ajoberstar,项目名称:graclj,代码行数:5,代码来源:ClojureLanguageRules.java


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