Created
June 15, 2020 20:09
-
-
Save cdmunoz/1a56d4be45f8f05e0e2fe177c3a2fa5a to your computer and use it in GitHub Desktop.
Adding testing dependencies
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
| def mockitoCoreVersion = "3.3.3" | |
| testImplementation "org.mockito:mockito-core:$mockitoCoreVersion" | |
| def archCoreTest = "2.1.0" | |
| testImplementation "androidx.arch.core:core-testing:$archCoreTest" | |
| def coroutinesTest = "1.3.4" | |
| testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesTest" | |
| def mockWebserverVersion = "4.7.2" | |
| testImplementation "com.squareup.okhttp3:mockwebserver:$mockWebserverVersion" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment