```fun <T> T.assertSoftly(chunk: T.() -> ...
# kotest-contributors
l
Copy code
fun <T> T.assertSoftly(chunk: T.() -> Unit) {
    assertSoftly {
        chunk()
    } 
}