Skip to content

Instantly share code, notes, and snippets.

@adam-hurwitz
Last active October 4, 2020 05:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adam-hurwitz/1008e2fb1c10e6f1f0529d7cfa0eab7d to your computer and use it in GitHub Desktop.
Save adam-hurwitz/1008e2fb1c10e6f1f0529d7cfa0eab7d to your computer and use it in GitHub Desktop.
Android Model-View-Intent with Unit Tests - Libraries in build.gradle (Module)
apply plugin: 'de.mannodermaus.android-junit5'
dependencies {
...
testImplementation "org.junit.jupiter:junit-jupiter-api:X.X.X"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:X.X.X"
testImplementation "org.junit.jupiter:junit-jupiter-params:X.X.X"
testImplementation "io.mockk:mockk:X.X.X"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:X.X.X"
testImplementation "org.assertj:assertj-core:X.X.X"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment