Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MPE (0.07 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtraPropertiesDynamicObjectAdapterTest.groovy

            and:
            !adapter.hasMethod("other")
        }
    
        def "getting missing property throws MPE"() {
            when:
            adapter.getProperty("foo")
    
            then:
            thrown(MissingPropertyException)
        }
    
        def "setting missing property throws MPE"() {
            when:
            adapter.setProperty("foo", 12)
    
            then:
            thrown(MissingPropertyException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top