Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InvalidNameException (0.18 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathValidationTest.groovy

            then:
            def e = thrown(ModelPath.InvalidNameException)
            e.message =~ "empty string"
    
            when:
            ModelPath.validateName("ΓΌ")
    
            then:
            e = thrown(ModelPath.InvalidNameException)
            e.message =~ "first character"
    
            when:
            ModelPath.validateName(" ")
    
            then:
            e = thrown(ModelPath.InvalidNameException)
            e.message =~ "first character"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top