Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for decodeSlashCharacterInDecodedPathSegment (0.15 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://user:@host/").password).isEqualTo("")
        assertThat(parse("http://user:%F0%9F%8D%A9@host/").password)
          .isEqualTo("\uD83C\uDF69")
      }
    
      @Test
      fun decodeSlashCharacterInDecodedPathSegment() {
        assertThat(parse("http://host/a%2Fb%2Fc").pathSegments).containsExactly("a/b/c")
      }
    
      @Test
      fun decodeEmptyPathSegments() {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon Aug 04 07:38:48 GMT 2025
    - 69.9K bytes
    - Click Count (0)
Back to Top