Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for composeQueryMultipleEncodedValuesForParameter (0.17 seconds)

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

            .build()
        assertThat(url.toString()).isEqualTo("http://host/?a+%3D%26%20b=ef")
        assertThat(url.queryParameter("a =& b")).isEqualTo("ef")
      }
    
      @Test
      fun composeQueryMultipleEncodedValuesForParameter() {
        val url =
          parse("http://host/")
            .newBuilder()
            .addQueryParameter("a+=& b", "c+=& d")
            .addQueryParameter("a+=& b", "e+=& f")
            .build()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Aug 04 07:38:48 GMT 2025
    - 69.9K bytes
    - Click Count (0)
Back to Top