Skip to content

Commit d4fb644

Browse files
committed
add kotest
1 parent 7855c8a commit d4fb644

2 files changed

Lines changed: 7 additions & 0 deletions

File tree

gradle/libs.versions.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33

44
[versions]
55
commons-math3 = "3.6.1"
6+
kotest = "5.9.1"
67

78
nextcontrol = "0.0.0-alpha6"
89

910
[libraries]
1011
commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" }
12+
kotest-runner = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }
13+
kotest-assertions = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
14+
kotest-property = { module = "io.kotest:kotest-property", version.ref = "kotest" }
1115

1216
[plugins]
1317
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version = "2.0.21" }

nextcontrol/build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ dependencies {
4444

4545
testImplementation("org.jetbrains.kotlin:kotlin-test")
4646
testImplementation("io.mockk:mockk:1.13.17")
47+
testImplementation(libs.kotest.runner)
48+
testImplementation(libs.kotest.assertions)
49+
testImplementation(libs.kotest.property)
4750
}
4851

4952
// Apply a specific Java toolchain to ease working on different environments.

0 commit comments

Comments
 (0)