Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertNoNetworkResponse (0.28 sec)

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

        return RecordedResponse(networkResponse.request, networkResponse, null, null, null)
      }
    
      /** Asserts that the current response didn't use the network.  */
      fun assertNoNetworkResponse() =
        apply {
          assertThat(response!!.networkResponse).isNull()
        }
    
      /** Asserts that the current response didn't use the cache.  */
      fun assertNoCacheResponse() =
        apply {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertRequestHeader("Accept-Charset", "UTF-8")
          .assertSentRequestAtMillis(request1SentAt, request1ReceivedAt)
          .assertReceivedResponseAtMillis(request1SentAt, request1ReceivedAt)
        cacheHit.assertNoNetworkResponse()
      }
    
      @Test
      fun conditionalCacheHit() {
        server.enqueue(
          MockResponse(
            headers =
              headersOf(
                "ETag",
                "v1",
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
Back to top