Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for postInvalidatesCacheWithUncacheableResponse (0.26 sec)

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

        val invalidate = client.newCall(request).execute()
        assertThat(invalidate.body.string()).isEqualTo("B")
        assertThat(get(url).body.string()).isEqualTo("C")
      }
    
      @Test
      fun postInvalidatesCacheWithUncacheableResponse() {
        // 1. Seed the cache.
        // 2. Invalidate it with an uncacheable response.
        // 3. Expect a cache miss.
        server.enqueue(
          MockResponse.Builder()
            .body("A")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
Back to top