Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for canGetElementsAsAList (0.16 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/model/internal/ImmutableDomainObjectSetTest.groovy

            expect:
            set.collect { it } == ['a', 'b', 'c']
            set.iterator().collect { it } == ['a', 'b', 'c']
        }
    
        def canGetElementsAsAList() {
            ImmutableDomainObjectSet<String> set = new ImmutableDomainObjectSet<String>(['a', 'b', 'c'])
    
            expect:
            set.all == ['a', 'b', 'c']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top