Skip to content

Instantly share code, notes, and snippets.

@Farhandroid
Created February 21, 2022 12:33
Show Gist options
  • Save Farhandroid/88e0327c6e6ae7d8426cb1fa8a3454cb to your computer and use it in GitHub Desktop.
Save Farhandroid/88e0327c6e6ae7d8426cb1fa8a3454cb to your computer and use it in GitHub Desktop.
FailTest
@Test
fun getSearchedResult_receivedResponse_wrongPageSize_shouldFail() {
runBlocking {
enqueueMockResponse("ImageResponse.json")
val responseBody = service.getSearchedImage("nature", 5).body()
val photoList = responseBody!!.photos
assertThat(photoList.size).isEqualTo(6)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment