11 lines
336 B
Groovy
11 lines
336 B
Groovy
|
plugins {
|
||
|
id 'kotlin'
|
||
|
id 'java-test-fixtures'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||
|
testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||
|
testFixturesImplementation Dependencies.mavenCentral.kluent
|
||
|
testFixturesImplementation 'io.mockk:mockk:1.12.2'
|
||
|
}
|