File tree Expand file tree Collapse file tree 3 files changed +757
-751
lines changed
src/test/kotlin/de/gesellix/docker/compose Expand file tree Collapse file tree 3 files changed +757
-751
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,7 @@ dependencies {
66
66
// implementation("com.github.fge:json-schema-validator:2.2.6")
67
67
68
68
testImplementation(" org.jetbrains.kotlin:kotlin-test-junit5" )
69
- testImplementation(" org.spekframework.spek2:spek-dsl-jvm:2.0.17" )
70
- testRuntimeOnly(" org.spekframework.spek2:spek-runner-junit5:2.0.17" )
69
+ testImplementation(" io.kotest:kotest-runner-junit5:4.6.4" )
71
70
testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
72
71
}
73
72
@@ -79,7 +78,8 @@ val dependencyVersions = listOf(
79
78
)
80
79
81
80
val dependencyGroupVersions = mapOf (
82
- " org.junit.jupiter" to " 5.8.1"
81
+ " org.junit.jupiter" to " 5.8.1" ,
82
+ " org.junit.platform" to " 1.8.1"
83
83
)
84
84
85
85
configurations.all {
@@ -105,10 +105,8 @@ tasks {
105
105
kotlinOptions.jvmTarget = " 1.8"
106
106
}
107
107
108
- withType(Test ::class .java) {
109
- useJUnitPlatform {
110
- includeEngines(" spek2" )
111
- }
108
+ withType<Test > {
109
+ useJUnitPlatform()
112
110
}
113
111
}
114
112
You can’t perform that action at this time.
0 commit comments