Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            impl.intValue 12
    
            then:
            1 * delegate.setUnmanagedValue("value")
            1 * delegate.setIntValue(12)
            0 * delegate._
    
            when:
            impl.intValue "123"
    
            then:
            1 * delegate.setIntValue(123)
            0 * delegate._
        }
    
        def "set method for property with scalar type reports conversion problem"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top