Skip to content

Instantly share code, notes, and snippets.

@cp-radhika-s
Last active December 22, 2021 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cp-radhika-s/471efb1323b674d5d75bd4ffbf34a8c6 to your computer and use it in GitHub Desktop.
Save cp-radhika-s/471efb1323b674d5d75bd4ffbf34a8c6 to your computer and use it in GitHub Desktop.
class MainViewModelTest {
private val userServices = mock<UserServices>()
private lateinit var viewModel: MainViewModel
@Test
fun `Loading state works`() = runBlocking {
whenever(userServices.getUsers()).thenReturn(emptyList())
viewModel = MainViewModel(userServices)
Assert.assertEquals(State.LOADING, viewModel.state.value)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment