Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SpecializedMapSchema (0.12 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

        }
    
        interface SomeMap extends ModelMap<List<String>> {
        }
    
        def "specialized map"() {
            expect:
            def schema = extract(SomeMap)
            assert schema instanceof SpecializedMapSchema
            schema.elementType == new ModelType<List<String>>() {}
            schema.implementationType
        }
    
        private void fail(extractType, errorType, String msgPattern) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top