Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 12346891 (0.07 sec)

  1. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

        def "won't parse string with non-hex chars: #illegal"() {
            when:
            HashCode.fromString(illegal)
    
            then:
            thrown Exception
    
            where:
            illegal << ["abcdefgh", "-1235689", "0x123456"]
        }
    
        def "won't parse too short string: #length"() {
            when:
            HashCode.fromString("a" * length)
    
            then:
            thrown Exception
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top