Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for THAT_SURE_IS_AN_INVALID_CHARSET (0.53 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            where:
            method << ['from', 'into']
        }
    
        def 'setting the filteringCharset to invalid value throws an exception'() {
            when:
            spec.filteringCharset = "THAT_SURE_IS_AN_INVALID_CHARSET"
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def 'setting the filteringCharset to null throws an exception'() {
            when:
            spec.filteringCharset = null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top