Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for MinimalFileTreeStructureVisitor (0.43 sec)

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

            given:
            def root = temporaryFolder.createDir("root")
            def patterns = new PatternSet()
            def owner = Stub(FileTreeInternal)
            def visitor = Mock(MinimalFileTree.MinimalFileTreeStructureVisitor)
    
            def fileTree = new DirectoryFileTree(root, patterns, TestFiles.fileSystem(), false)
    
            when:
            fileTree.visitStructure(visitor, owner)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/SingleIncludePatternFileTreeSpec.groovy

                }
            }
        }
    
        def "visits structure"() {
            def spec = Stub(Spec)
            def owner = Stub(FileTreeInternal)
            def visitor = Mock(MinimalFileTree.MinimalFileTreeStructureVisitor)
    
            fileTree = new SingleIncludePatternFileTree(tempDir.testDirectory, "pattern", spec)
    
            when:
            fileTree.visitStructure(visitor, owner)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top