Skip to content

Instantly share code, notes, and snippets.

@elihart
Created November 20, 2019 20:23
Show Gist options
  • Save elihart/dc06bb85b4eb014ed5c80f4d557687d3 to your computer and use it in GitHub Desktop.
Save elihart/dc06bb85b4eb014ed5c80f4d557687d3 to your computer and use it in GitHub Desktop.
MvRxViewModelTestClass
class TextViewModelTest : ViewModelTest<TextState, TextViewModel> {
override fun buildViewModel() = TextViewModel(TextState())
@Test
fun setText() = TextViewModel::setText {
withParams("hello") expectState {
copy(text = "hello")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment