Last active
October 4, 2020 01:32
-
-
Save adam-hurwitz/756a3defa9a577db74be30e92838cab6 to your computer and use it in GitHub Desktop.
Android Model-View-Intent with Unit Tests - FeedViewTest.kt Verify and Confirm
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
... | |
private lateinit var test: FeedViewTestCase | |
... | |
@ParameterizedTest | |
@MethodSource("FeedViewTestCaseStream") | |
fun `FeedView`(feedViewTestCase: FeedViewTestCase) = testCoroutineDispatcher.runBlockingTest { | |
test = feedViewTestCase | |
mockComponents(test) | |
val viewModel = FeedViewModel(...) | |
viewModel.bindIntents(object : FeedView {...}) | |
... | |
verifyTest(test) | |
} | |
private fun verifyTest(test: FeedViewTestCase) { | |
coVerify { | |
repository.getMainFeedNetwork(any(), any()) | |
} | |
confirmVerified(repository) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment