Last active
July 23, 2023 14:34
-
-
Save Foxpace/3a72b7a8a324e4c78d4b47e0367e4a4b to your computer and use it in GitHub Desktop.
Turbine test dependencies for unit testing
This file contains 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
// core | |
testImplementation "junit:junit:4.13.2" | |
// for coroutine handling | |
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.1" | |
// mockito for creating mocks and templates | |
testImplementation "org.mockito:mockito-core:5.3.1" | |
testImplementation "org.mockito.kotlin:mockito-kotlin:4.1.0" | |
// turbine for testing the flows | |
testImplementation 'app.cash.turbine:turbine:1.0.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment