Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for assertMethodMissing (0.18 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            then:
            def e = thrown(MissingMethodException)
            assertMethodMissing(e, method, args)
    
            where:
            method            | arguments
            "unknown"         | [12]
            "methodWithClass" | [0]
            "methodWithValue" | [Integer]
        }
    
        private void assertMethodMissing(MissingMethodException e, String name, Object... arguments) {
            assert e.method == name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top