Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for missingValueMessage (0.17 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            messageIndent = indent
        }
    
    
        String learnAt(String id, String section) {
            documentationRegistry.getDocumentationRecommendationFor("information", id, section)
        }
    
        String missingValueMessage(@DelegatesTo(value = SimpleMessage, strategy = Closure.DELEGATE_FIRST) Closure<?> spec = {}) {
            def config = display(SimpleMessage, 'value_not_set', spec)
            config.description("doesn't have a configured value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            expect:
            fails "myTask"
            failure.assertHasDescription("A problem was found with the configuration of task ':myTask' (type 'TaskWithAbsentNestedInput').")
            failureDescriptionContains(missingValueMessage { type('TaskWithAbsentNestedInput').property('nested') })
    
            where:
            description               | property
            "for plain Java property" | "NestedBean nested"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top