Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 818 for Reports (0.19 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            then:
            def ex = thrown IOException
            ex.message == "Unable to delete file '$target'"
            ex.suppressed.collect { it.message } == ["ROOT CAUSE"]
        }
    
        def "reports failed to delete child files and reports a reasonable number of retries after failure to delete directory"() {
    
            given:
            def targetDir = tmpDir.createDir("target")
            def deletable = targetDir.createFile("delete.yes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            assertHasNoProblems()
        }
    
        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StateStoreDetails) Closure closure = {}) {
            def details = new StateStoreDetails()
            closure.delegate = details
            closure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            buildFile << """
                task verifyTestResultConventions {
                    def junitXmlOutputLocation = provider { ${testTaskName}.reports.junitXml.outputLocation }
                    def htmlOutputLocation = provider { ${testTaskName}.reports.html.outputLocation }
                    def binaryResultsDirectory = provider { ${testTaskName}.binaryResultsDirectory }
                    def buildDir = layout.buildDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

        /**
         * Asserts that the cache entry was written with no problems.
         *
         * Also asserts that the expected set of projects is configured, the expected models are queried
         * and the appropriate console logging, reports and build operations are generated.
         */
        void assertStateStored(@DelegatesTo(StoreDetails) Closure closure) {
            def details = new StoreDetails()
            closure.delegate = details
            closure()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            file("build/reports/project/dependencies/js/script.js").assertExists()
            file("build/reports/project/dependencies/css/style.css").assertExists()
            file("build/reports/project/dependencies/images/throbber.gif").assertExists()
            file("build/reports/project/dependencies/css/tree.css").assertExists()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

        abstract void buildLogicApplication(BuildInputRead read)
    
        abstract String getLocation()
    
        boolean isRestrictedDsl() {
            return false
        }
    
        def "reports undeclared system property read using #propertyRead.groovyExpression prior to task execution from plugin"() {
            buildLogicApplication(propertyRead)
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            result.assertTaskExecuted(":core:test")
            result.assertTaskExecuted(":util:test")
    
            and: "an aggregate report is created"
            dslDir.file("build/reports/allTests/index.html").assertExists()
    
            and: "no test reports in the subprojects are created"
            getStandardTestReportDir(dslDir, "core", "").file("index.html").assertDoesNotExist()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
            reportsCompleteAbsenceOfResolvableConfigurations()
        }
    
        def "if only consumable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

                }
            }
        }
    }
    '''
            when:
            succeeds "show"
    
            then:
            outputContains("value = [foo, [test:foo]]")
        }
    
        def "reports nested rule location for failure in initialization action"() {
            buildFile << '''
    model {
        things {
            main(Thing) {
                unknown = 12
            }
        }
    }
    '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

            styledTextOutputFactory.create(_) >> outputProbe
    
            task = project.tasks.create("test", TestShowToolchainsTask.class, javaInstallationRegistry, styledTextOutputFactory, toolchainConfiguration)
        }
    
        def "reports toolchains in right order"() {
            given:
            defineJdks(
                jdk("14", "+2", "14"),
                jdk("15-ea", "+2", "15"),
                jdk("9", "+2", "15"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top