Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disallowChanges (0.24 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            0 * _
    
            when:
            property.finalizeValue()
            property.implicitFinalizeValue()
            property.implicitFinalizeValue()
            property.disallowChanges()
    
            then:
            0 * _
        }
    
        def "can finalize after changes disallowed"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "cannot set to empty list after changes disallowed"() {
            given:
            def property = property()
            property.set(someValue())
            property.disallowChanges()
    
            when:
            property.empty()
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'The value for this property cannot be changed any further.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
Back to top