Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for outputEquals (0.1 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

        def "tests output of missingValueMessage"() {
            when:
            render(missingValueMessage {
                type('SomeType')
                property('someProperty')
            })
    
            then:
            outputEquals """
    Type 'SomeType' property 'someProperty' doesn't have a configured value.
    
    Reason: This property isn't marked as optional and no value has been configured.
    
    Possible solutions:
      1. Assign a value to 'someProperty'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top