File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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 "
You can’t perform that action at this time.
0 commit comments