Skip to content

Instantly share code, notes, and snippets.

@cdmunoz
Created June 15, 2020 20:09
Show Gist options
  • Select an option

  • Save cdmunoz/1a56d4be45f8f05e0e2fe177c3a2fa5a to your computer and use it in GitHub Desktop.

Select an option

Save cdmunoz/1a56d4be45f8f05e0e2fe177c3a2fa5a to your computer and use it in GitHub Desktop.
Adding testing dependencies
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