Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for usesFactoryToCreateImmutableFiles (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            then:
            result == fileCollection
            1 * fileCollectionFactory.configurableFiles() >> fileCollection
            1 * fileCollection.from('a', 'b', 'c') >> fileCollection
        }
    
        def usesFactoryToCreateImmutableFiles() {
            def fileCollection = Mock(FileCollectionInternal)
    
            when:
            def result = fileOperations.immutableFiles('a', 'b', 'c')
    
            then:
            result == fileCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top