Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            }
    
            expect:
            assertSetContainsForAllTypes(fileTree, 'subDir/included1', 'subDir2/included2')
        }
    
        def testIsEmptyWhenBaseDirDoesNotExist() {
            fileTree.dir = new File(testDir, 'does not exist')
    
            expect:
            fileTree.files.empty
            fileTree.empty
            assertSetContainsForAllTypes(fileTree)
            assertVisits(fileTree, [], [])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top