Skip to content

Instantly share code, notes, and snippets.

@patrickmclaren
Last active August 29, 2015 14:17
Show Gist options
  • Save patrickmclaren/8d43805cb92ffd91d0e2 to your computer and use it in GitHub Desktop.
Save patrickmclaren/8d43805cb92ffd91d0e2 to your computer and use it in GitHub Desktop.
Example Gradle build with Mockito
apply plugin: 'com.android.application'
android {
...
}
repositories {
mavenCentral()
}
dependencies {
...
androidTestCompile 'org.mockito:mockito-core:1.10.19'
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment