Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for failedCall (0.24 sec)

  1. okhttp-coroutines/src/test/kotlin/okhttp3/coroutines/ExecuteAsyncTest.kt

              withContext(Dispatchers.IO) {
                it.body.string()
              }
            }
          }
    
          assertThat(call.isCanceled()).isTrue()
        }
      }
    
      @Test
      fun failedCall() {
        runTest {
          server.enqueue(
            MockResponse
              .Builder()
              .body("abc")
              .onResponseStart(SocketEffect.ShutdownConnection)
              .build(),
          )
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top