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

Add Mockk dependency

This commit is contained in:
Tim Schubert 2020-11-09 21:32:12 +01:00
parent 1cf157628e
commit 8b647e2530
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 4 additions and 1 deletions

View file

@ -55,6 +55,8 @@ dependencies {
implementation "androidx.room:room-ktx:$room_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'
}
}