Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestReport (0.18 sec)

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

            skipped ":testReport"
        }
    
        def "test report task is skipped when there are no results"() {
            given:
            buildFile << """
                ${junitSetup}
                tasks.register('testReport', TestReport) {
                    testResults.from(tasks.named('test', Test))
                    destinationDirectory = reporting.baseDirectory.dir('tr')
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    Lastly, we add a `testReport` task that aggregates the test results from the `testResultsDirs` property, which contains all of the binary test results resolved from the `testReportData` configuration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testing/testReport")
        def "can create a custom TestReport task with #dsl dsl"() {
            given:
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            def result = succeeds("test", "testReport")
    
            then: "the test task is executed"
            result.assertTaskExecuted(":core:test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.api.tasks.testing.Test</td>
                </tr>
                <tr>
                    <td>org.gradle.api.tasks.testing.TestReport</td>
                </tr>
                <tr>
                    <td>org.gradle.api.tasks.bundling.War</td>
                </tr>
                <tr>
                    <td>org.gradle.api.tasks.wrapper.Wrapper</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
Back to top