Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testReportAggregation (0.18 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `testReportAggregation` configuration
    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    <3> Optional: make aggregate test report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `testReportAggregation`
    | The configuration used to declare all project dependencies having test result data to be aggregated.
    | `aggregateTestReportResults`
    | Consumes the project dependencies from the `testReportAggregation` configuration using <<variant_model#sec:variant-aware-matching,variant-aware matching>> to find the appropriate test suite type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/groovy/test-results/build.gradle

    plugins {
        id 'base'
        id 'test-report-aggregation'
    }
    
    dependencies {
        testReportAggregation project(':application') // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            testAggregateTestReport(AggregateTestReport) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 434 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/kotlin/test-results/build.gradle.kts

    plugins {
        base
        id("test-report-aggregation")
    }
    
    dependencies {
        testReportAggregation(project(":application")) // <.>
    }
    
    // tag::create_report[]
    reporting {
        reports {
            val testAggregateTestReport by creating(AggregateTestReport::class) { // <.>
                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.check {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 446 bytes
    - Viewed (0)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            given:
            buildFile << '''
                apply plugin: 'org.gradle.test-report-aggregation'
    
                dependencies {
                    testReportAggregation project(":application")
                    testReportAggregation project(":direct")
                }
    
                reporting {
                    reports {
                        testAggregateTestReport(AggregateTestReport) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

     */
    @Incubating
    public abstract class TestReportAggregationPlugin implements Plugin<Project> {
    
        public static final String TEST_REPORT_AGGREGATION_CONFIGURATION_NAME = "testReportAggregation";
    
        @Inject
        protected abstract JvmPluginServices getJvmPluginServices();
    
        @Override
        public void apply(Project project) {
            project.getPluginManager().apply("org.gradle.reporting-base");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top