mudasar187
08/11/2025, 1:08 PM6.0.0.M15
, but this import/dependencies does not exists anymore?
import io.kotest.data.forAll
import io.kotest.data.row
Tried to find any documentation for this, but cannot find anything?mudasar187
08/11/2025, 1:09 PMTak Wai Wang
08/11/2025, 1:22 PM@file:Suppress("DEPRECATION")
. What is the alternative for it?Klitos Kyriacou
08/11/2025, 1:58 PMcontext("parseDouble") {
arrayOf(
"000000000900å" to -90.00,
...
).forEach { (input, expected) ->
test("should correctly parse copybook representation '$input' to '$expected'") {
input.parseDouble shouldBe expected
}
}
}
sam
08/11/2025, 3:31 PMsam
08/11/2025, 3:31 PMmudasar187
08/11/2025, 5:17 PM