Skip to content

Commit 3176844

Browse files
committed
deps
1 parent 1e12f77 commit 3176844

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ dependencies {
7272
implementation(deps.timber)
7373

7474
testImplementation(deps.test.junit)
75-
androidTestImplementation(deps.test.androidxJunit)
76-
androidTestImplementation(deps.test.androidXSspresso)
75+
androidTestImplementation(deps.test.androidx.junit)
76+
androidTestImplementation(deps.test.androidx.core)
77+
androidTestImplementation(deps.test.androidx.espresso.core)
7778

7879
addUnitTest()
7980
testImplementation(testUtils)

buildSrc/src/main/kotlin/deps.kt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,15 @@ object deps {
7979

8080
object test {
8181
const val junit = "junit:junit:4.13.2"
82-
const val androidxJunit = "androidx.test.ext:junit:1.1.2"
83-
const val androidXSspresso = "androidx.test.espresso:espresso-core:3.3.0"
82+
83+
object androidx {
84+
const val core = "androidx.test:core-ktx:1.4.0"
85+
const val junit = "androidx.test.ext:junit-ktx:1.1.3"
86+
87+
object espresso {
88+
const val core = "androidx.test.espresso:espresso-core:3.4.0"
89+
}
90+
}
8491

8592
const val mockk = "io.mockk:mockk:1.12.1"
8693
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"

0 commit comments

Comments
 (0)