Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for testRfc3986Normal (0.45 seconds)

  1. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertThat(simplifyPath("/a/b/c/g;x=1/../y")).isEqualTo("/a/b/c/y");
      }
    
      /** http://gbiv.com/protocols/uri/rfc/rfc3986.html#relative-normal */
      public void testRfc3986Normal() {
        assertThat(simplifyPath("/a/b/c/g")).isEqualTo("/a/b/c/g");
        assertThat(simplifyPath("/a/b/c/./g")).isEqualTo("/a/b/c/g");
        assertThat(simplifyPath("/a/b/c/g/")).isEqualTo("/a/b/c/g");
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertThat(simplifyPath("/a/b/c/g;x=1/../y")).isEqualTo("/a/b/c/y");
      }
    
      /** http://gbiv.com/protocols/uri/rfc/rfc3986.html#relative-normal */
      public void testRfc3986Normal() {
        assertThat(simplifyPath("/a/b/c/g")).isEqualTo("/a/b/c/g");
        assertThat(simplifyPath("/a/b/c/./g")).isEqualTo("/a/b/c/g");
        assertThat(simplifyPath("/a/b/c/g/")).isEqualTo("/a/b/c/g");
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top