Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testValueValidationWithPut (0.26 sec)

  1. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultAttributesTest.groovy

            then:
            thrown(ManifestException)
    
            when:
            attributes.putAll((null): 'someValue')
    
            then:
            thrown(ManifestException)
        }
    
        def testValueValidationWithPut() {
            when:
            attributes.put('key', null)
    
            then:
            thrown(ManifestException)
        }
    
        def testValueValidationWithPutAll() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top