Last active
October 4, 2020 05:36
-
-
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)
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
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