Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createChildren (0.21 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

        abstract protected NODE createInitialRootNode(ChildMap<CHILD> children);
    
        abstract protected CHILD mockChild()
    
        void setupTest(VirtualFileSystemTestSpec spec) {
            this.children = createChildren(spec.childPaths)
            this.initialRoot = createInitialRootNode(children)
            this.searchedPath = spec.searchedPath
            this.selectedChildPath = spec.selectedChildPath
            if (selectedChildPath != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

            }
    
            where:
            vfsSpec << CHILD_IS_PREFIX.findAll { it.childPaths.size() == 1 }
        }
    
        def "returns empty for snapshot"() {
            def node = new UnknownFileSystemNode(createChildren(["myFile.txt"]))
    
            expect:
            !node.getSnapshot().present
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top