1
0
Fork 0
mirror of https://gitlab.com/dadada_/uuidgen.git synced 2025-06-09 02:23:56 +02:00

Add test dependencies

This commit is contained in:
Tim Schubert 2020-11-12 20:24:21 +01:00
parent de221e2658
commit 6e2bbbabf1
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 8 additions and 1 deletions

View file

@ -52,10 +52,14 @@ dependencies {
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
debugImplementation "androidx.fragment:fragment-testing:$fragment_version"
testImplementation "androidx.room:room-testing:$room_version"
testImplementation 'junit:junit:4.13.1'
testImplementation "io.mockk:mockk:$mockk_version"
androidTestImplementation "io.mockk:mockk-android:$mockk_version"
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation "androidx.test.espresso:espresso-core:$espresso_version"
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
androidTestImplementation "androidx.test.espresso:espresso-intents:$espresso_version"
}