Update wizard tests

This commit is contained in:
Kirill Shmakov
2020-08-21 13:03:05 +03:00
parent cee72023fa
commit 5a45cc7290
4 changed files with 4 additions and 0 deletions
@@ -43,6 +43,7 @@ kotlin {
} }
androidTest { androidTest {
dependencies { dependencies {
implementation kotlin('test-junit')
implementation 'junit:junit:4.12' implementation 'junit:junit:4.12'
} }
} }
@@ -41,6 +41,7 @@ kotlin {
} }
val androidTest by getting { val androidTest by getting {
dependencies { dependencies {
implementation(kotlin("test-junit"))
implementation("junit:junit:4.12") implementation("junit:junit:4.12")
} }
} }
@@ -41,6 +41,7 @@ kotlin {
} }
androidTest { androidTest {
dependencies { dependencies {
implementation kotlin('test-junit')
implementation 'junit:junit:4.12' implementation 'junit:junit:4.12'
} }
} }
@@ -39,6 +39,7 @@ kotlin {
} }
val androidTest by getting { val androidTest by getting {
dependencies { dependencies {
implementation(kotlin("test-junit"))
implementation("junit:junit:4.12") implementation("junit:junit:4.12")
} }
} }