mirror of
https://gitlab.com/dadada_/uuidgen.git
synced 2025-06-08 01:53:57 +02:00
Add Mockk dependency
This commit is contained in:
parent
1cf157628e
commit
8b647e2530
2 changed files with 4 additions and 1 deletions
|
@ -55,6 +55,8 @@ dependencies {
|
||||||
implementation "androidx.room:room-ktx:$room_version"
|
implementation "androidx.room:room-ktx:$room_version"
|
||||||
testImplementation "androidx.room:room-testing:$room_version"
|
testImplementation "androidx.room:room-testing:$room_version"
|
||||||
testImplementation 'junit:junit:4.13.1'
|
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.ext:junit:1.1.2'
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
}
|
}
|
|
@ -2,6 +2,7 @@
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = "1.4.10"
|
ext.kotlin_version = "1.4.10"
|
||||||
ext.room_version = "2.2.5"
|
ext.room_version = "2.2.5"
|
||||||
|
ext.mockk_version = "1.10.2"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue