SEONGILKIM
SEONGILKIM
@sksamuel Yesterday gradle 8.5 was released, how about updating to gradle 8.5 and kotlin 1.9.21?
You can write a test use `list` as follows. ```kotlin import io.kotest.core.spec.style.FunSpec import io.kotest.datatest.withData class Tests: FunSpec({ withData( listOf(Triple("a", 2, "aa")) ) { (input, count, expected) -> // ... //...
@Virtlink There's some reason why we cannot add overloaded function that accept only one element. https://github.com/kotest/kotest/blob/cd60ed692e4b789de99d7db9c82be35dc80afd2a/kotest-framework/kotest-framework-datatest/src/commonMain/kotlin/io/kotest/datatest/container.kt#L18
What about unifying the base package? Like, from "com.sksamuel.kotest.listeners.spec.singleinstance" to "io.kotest.listeners.spec.singleinstance". I looked at the code and only the package of the test code is not unified, so this change...