Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for verifyAll (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            fails ':help'
    
            then:
            verifyContains(failure.error, missingCatalogFile {
                inCatalog('libs')
                missing(path)
            })
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:catalog-file-does-not-exist'
                contextualLabel == 'Problem: In version catalog libs, import of external catalog file failed.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            result.actionClassLoaderHashes == null
            result.actionClassNames == null
            result.inputValueHashes == null
            result.outputPropertyNames == null
    
            and:
            verifyAll(receivedProblem(0)) {
                fqid == 'validation:property-validation:unknown-implementation'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

            when:
            fails(":compileGroovy")
    
            then:
            // If the joint compilation is working correctly, we should exercise the JdkJavaCompiler and we should have detailed problems events
            verifyAll(receivedProblem(0)) {
                fqid == 'compilation:java:java-compilation-error'
                details == "';' expected"
            }
    
            // We also check if the error counting also works,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            failureDescriptionContains(unexpectedInputType {
                property('input')
                    .kind(fileType)
                    .missing(unexpected)
                    .includeLink()
            })
    
            verifyAll(receivedProblem(0)) {
                fqid == 'validation:property-validation:unexpected-input-file-type'
                contextualLabel == "Property \'input\' $fileType \'${unexpected.absolutePath}\' is not a $fileType"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                type('CustomTask')
                property('brokenInputFile')
                kind(inputName)
                missing(brokenInputFile)
                includeLink()
            })
    
            verifyAll(receivedProblem(0)) {
                fqid == 'validation:property-validation:input-file-does-not-exist'
    
                def inputNameLc = inputName.toLowerCase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                actual.dependenciesConfigurationIdentity == expected.dependenciesConfigurationIdentity
        }
    
        void verifyTransformationIdentity(actual, PlannedTransformStepIdentityWithoutId expected) {
            verifyAll(actual) {
                nodeType.toString() == TRANSFORM_STEP
                consumerBuildPath == expected.consumerBuildPath
                consumerProjectPath == expected.consumerProjectPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            when:
            fails('myTask')
            then:
            failureDescriptionContains("Type 'MyTask' property 'strings' doesn't have a configured value.")
    
            verifyAll(receivedProblem) {
                fqid == 'validation:property-validation:value-not-set'
                contextualLabel == 'Type \'MyTask\' property \'strings\' doesn\'t have a configured value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    return new ReceivedProblem(operation.id, problemDetails)
                }
            }
        }
    
        static void printCollectedProblems(ReceivedProblem problem, int index) {
            println "verifyAll(receivedProblem($index)) {"
            println "    fqid == '${problem.definition.id.fqid}'"
            if (problem.contextualLabel != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        property('output')
                            .forbiddenAt(reserved)
                            .includeLink()
                    }))
                    verifyAll(receivedProblem(index as Integer)) {
                        fqid == 'validation:property-validation:cannot-write-to-reserved-location'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top