2022-03-05 18:53:59 +00:00
|
|
|
plugins {
|
2022-12-11 15:06:05 +00:00
|
|
|
id "kotlin"
|
2022-03-05 18:53:59 +00:00
|
|
|
id 'java-test-fixtures'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly project(":domains:android:viewmodel-stub")
|
2022-12-11 12:49:48 +00:00
|
|
|
implementation libs.kotlin.coroutines
|
2022-03-05 18:53:59 +00:00
|
|
|
|
|
|
|
kotlinFixtures(it)
|
2022-12-11 12:49:48 +00:00
|
|
|
testFixturesImplementation libs.kotlin.coroutines
|
|
|
|
testFixturesImplementation libs.kotlin.coroutines.test
|
2022-03-05 18:53:59 +00:00
|
|
|
testFixturesImplementation testFixtures(project(":core"))
|
|
|
|
testFixturesCompileOnly project(":domains:android:viewmodel-stub")
|
|
|
|
}
|