Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for changedExisting (0.13 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

        }
    
        def "method putAll() reports argument as change only"() {
            when:
            def update = [existing: 'changedExisting', missing: 'changedMissing']
            getMapUnderTestToWrite().putAll(update)
    
            then:
            1 * onChange.accept('existing', 'changedExisting')
            1 * onChange.accept('missing', 'changedMissing')
            0 * onAccess._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top