Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for TestReport (0.2 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestReportIntegrationTest.groovy

                    ${configureTestFramework}
                }
    
                tasks.register('testReport', TestReport) {
                    testResults.from(test, otherTests)
                    destinationDirectory = reporting.baseDirectory.dir('tr')
                }
            """
    
            and:
            testClass("Thing")
    
            when:
            succeeds "testReport"
    
            then:
            skipped(":otherTests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/AggregateTestReport.java

     *
     * @since 7.4
     */
    @Incubating
    public interface AggregateTestReport extends ReportSpec {
    
        /**
         * Contains the {@link TestReport} task instance which produces this report.
         *
         * @return the task instance
         */
        TaskProvider<TestReport> getReportTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/kotlin/application/build.gradle.kts

    }
    
    dependencies {
        implementation(project(":list"))
        implementation(project(":utilities"))
    }
    
    application {
        mainClass = "org.gradle.sample.Main"
    }
    
    tasks.check {
        dependsOn(tasks.named<TestReport>("testAggregateTestReport")) // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 351 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/testReport/tests/subProjectsTestReport.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 36 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/groovy/test-results/build.gradle

                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.named('check') {
        dependsOn tasks.named('testAggregateTestReport', TestReport) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 434 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/kotlin/test-results/build.gradle.kts

                testType = TestSuiteType.UNIT_TEST
            }
        }
    }
    // end::create_report[]
    
    tasks.check {
        dependsOn(tasks.named<TestReport>("testAggregateTestReport")) // <.>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 446 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/groovy/application/build.gradle

        implementation project(':utilities')
    }
    
    application {
        mainClass = 'org.gradle.sample.Main'
    }
    
    tasks.named('check') {
        dependsOn tasks.named('testAggregateTestReport', TestReport) // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 360 bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            def testReport = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            testReport.assertHasClassCoverage("application.Adder")
            testReport.assertHasClassCoverage("direct.Multiplier")
            testReport.assertHasClassCoverage("transitive.Powerize")
            testReport.assertHasClassButNoCoverage("transitive.Divisor")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestReportTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    class TestReportTest extends AbstractProjectBuilderSpec {
        def reportTask = TestUtil.create(temporaryFolder).task(TestReport)
    
        def "infers dependencies and results dirs from input tests"() {
            def test1 = test("test1")
            def test2 = test("test2")
            def test3 = test("test3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    == Tasks
    
    When the project also applies the `jvm-test-suite` plugin, the following tasks are added for each test suite:
    
    `__testSuite__AggregateTestReport` — link:{groovyDslPath}/org.gradle.api.tasks.testing.TestReport.html[TestReport]::
    _Depends on_: Artifacts of variants matching the below attributes
    +
    Collects variants of direct and transitive project dependencies via the `testReportAggregation` configuration. The following Attributes will be matched:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top