2022-10-31 19:09:51 +01:00
|
|
|
plugins {
|
|
|
|
id 'kotlin'
|
|
|
|
id 'java-test-fixtures'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
2022-11-01 10:15:23 +01:00
|
|
|
|
|
|
|
testFixturesImplementation testFixtures(project(":core"))
|
|
|
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
|
|
testFixturesImplementation Dependencies.mavenCentral.kluent
|
|
|
|
testFixturesImplementation Dependencies.mavenCentral.mockk
|
|
|
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesTest
|
2022-10-31 19:09:51 +01:00
|
|
|
}
|