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