mirror of
https://gitlab.com/dadada_/uuidgen.git
synced 2025-06-07 17:43:57 +02:00
Add test dependencies
This commit is contained in:
parent
de221e2658
commit
6e2bbbabf1
2 changed files with 8 additions and 1 deletions
|
@ -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"
|
||||
|
||||
}
|
||||
|
|
|
@ -3,6 +3,9 @@ buildscript {
|
|||
ext.kotlin_version = "1.4.10"
|
||||
ext.room_version = "2.2.5"
|
||||
ext.mockk_version = "1.10.2"
|
||||
ext.nav_version = "2.3.1"
|
||||
ext.espresso_version = "3.3.0"
|
||||
ext.fragment_version = "1.2.5"
|
||||
|
||||
repositories {
|
||||
google()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue