2022-03-05 19:53:59 +01:00
|
|
|
plugins {
|
|
|
|
id 'kotlin'
|
|
|
|
id 'java-test-fixtures'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly project(":domains:android:viewmodel-stub")
|
|
|
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
|
|
|
|
|
|
kotlinFixtures(it)
|
|
|
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
2022-04-26 00:09:35 +02:00
|
|
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
|
2022-03-05 19:53:59 +01:00
|
|
|
testFixturesImplementation testFixtures(project(":core"))
|
|
|
|
testFixturesCompileOnly project(":domains:android:viewmodel-stub")
|
|
|
|
}
|