mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
44efff41dd
commit_hash:3f011ba984984a3a1265c9187ac819e573b0daae
24 lines
560 B
Groovy
24 lines
560 B
Groovy
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
defaultConfig {
|
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
}
|
|
|
|
testOptions {
|
|
unitTests {
|
|
includeAndroidResources = true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation libs.androidx.test.core
|
|
testImplementation libs.fest.reflect
|
|
testImplementation libs.junit
|
|
testImplementation libs.kotlin.corountines.test
|
|
testImplementation libs.mockito.core
|
|
testImplementation libs.mockito.kotlin
|
|
testImplementation libs.robolectric
|
|
}
|