Last active
December 22, 2021 06:37
-
-
Save cp-radhika-s/471efb1323b674d5d75bd4ffbf34a8c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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