Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getListWithAllChildProjects (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            thrown(groovy.lang.MissingMethodException)
        }
    
        private Set<Project> getListWithAllProjects() {
            [project, child1, child2, childchild]
        }
    
        private Set<Project> getListWithAllChildProjects() {
            [child1, child2, childchild]
        }
    
        def getPath() {
            expect:
            child1.path == Project.PATH_SEPARATOR + "child1"
            project.path == Project.PATH_SEPARATOR
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top