Prepared 1.4.1 is out! This version is mostly abo...
# opensavvy
c
Prepared 1.4.1 is out! This version is mostly about parameterized tests. No new features, but a bunch of new documentation, and a bump of #C06083PAKEK to 0.3.2! Thanks to these two libraries, we can rewrite complex examples like:
Copy code
fun SuiteDsl.foo() = suite("Foo") {
    parameterize {
        val a by parameterOf(1, 2, 3, 4, 5)
        val b by parameterOf("b", "", "aaaaaa", a.toString())
        val c by parameterOf(true, false, null)

        test("foo $a $b $c") {
            foo(a, b, c)
        }
    }
}
See the full changelog • Visit the documentation
👍 1
👍🏼 1