Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for decodeEmptyPathSegments (0.38 sec)

  1. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun decodeSlashCharacterInDecodedPathSegment() {
        assertThat(parse("http://host/a%2Fb%2Fc").pathSegments).containsExactly("a/b/c")
      }
    
      @Test
      fun decodeEmptyPathSegments() {
        assertThat(parse("http://host/").pathSegments).containsExactly("")
      }
    
      @Test
      fun percentDecode() {
        assertThat(parse("http://host/%00").pathSegments).containsExactly("\u0000")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top