Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for prependNames (0.14 sec)

  1. subprojects/core-api/src/test/groovy/org/gradle/api/file/RelativePathTest.java

            childPath = new RelativePath(false, "one", "two").append(true);
            assertPathContains(childPath, true, "one", "two");
        }
    
        @Test
        public void prependNames() {
            RelativePath childPath = new RelativePath(false, "one", "two").prepend("three", "four");
            assertPathContains(childPath, false, "three", "four", "one", "two");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 29 15:31:00 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top