Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for createsPathForAFileUrl (0.22 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/PathFactoryTest.groovy

            expect:
            def path = factory.relativePath('ROOT_DIR', file)
            path.url == "file://${relpath}"
            path.relPath == relpath
        }
    
        def createsPathForAFileUrl() {
            expect:
            def path = factory.path('file://a/b/c')
            path.url == 'file://a/b/c'
            path.relPath == null
        }
    
        def createsPathForAJarUrl() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top