Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for TestReport (0.31 sec)

  1. 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)
  2. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    The user must also declare one or more reports of type `AggregateTestReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the test data.  A `TestReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `testReportAggregation` configuration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `TestReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

            }
        }
    
        /**
         * This tests that the usage of deprecated methods in {@code org.gradle.api.tasks.testing.TestReport} task
         * is okay, and ensures the methods are not removed until the versions of the kotlin plugin that uses them
         * is no longer tested.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. README.md

    [license]: https://www.apache.org/licenses/LICENSE-2.0
    [build]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master/
    [test-results]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master/lastCompletedBuild/testReport/
    [build-status]: https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master.svg?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    In order to operate, the `Test` task type requires just two pieces of information:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.testing.TestReport.getDestinationDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestReport.java:0)
    Method <org.gradle.api.tasks.wrapper.Wrapper.getArchiveBase()> does not have raw return type assignable to org.gradle.api.provider.Property in (Wrapper.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. 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 (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `showSinglePathToDependency` property instead.
    
    ==== Report and TestReport API Cleanup
    
    The deprecated `destination`, and `enabled` properties of the `Report` type have been removed.
    Use the `outputLocation` and `required` properties instead.
    
    The deprecated `testResultDirs` property of the `TestReport` task type has been removed.
    Use the `testResults` property instead.
    
    ==== JacocoMerge Task Removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top