Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for canCopyFromAnotherPatternSet (0.61 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            new PatternSet(includes: ['i']) != new PatternSet(includes: ['other'])
            new PatternSet(excludes: ['e']) != new PatternSet(excludes: ['other'])
        }
    
        def canCopyFromAnotherPatternSet() {
            PatternSet other = new PatternSet()
            other.include 'a', 'b'
            other.exclude 'c'
            other.include({ true } as Spec)
            other.exclude({ false } as Spec)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top