21 lines
407 B
Text
21 lines
407 B
Text
plugins {
|
|
kotlin("jvm") version "1.9.24"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.13.2")
|
|
testImplementation("org.mockito:mockito-core:5.12.0")
|
|
testImplementation("org.mockito.kotlin:mockito-kotlin:5.3.1")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
testLogging {
|
|
events("passed", "failed", "skipped")
|
|
showStandardStreams = true
|
|
}
|
|
}
|