Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for setPathSegmentOutOfBounds (0.14 sec)

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

        val base = parse("http://host/a/b/c")
        val url = base.newBuilder().setPathSegment(1, "/").build()
        assertThat(url.encodedPath).isEqualTo("/a/%2F/c")
      }
    
      @Test
      fun setPathSegmentOutOfBounds() {
        assertFailsWith<IndexOutOfBoundsException> {
          HttpUrl.Builder().setPathSegment(1, "a")
        }
      }
    
      @Test
      fun setEncodedPathSegmentEncodes() {
    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