All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bkahlert.kommons.test.test.kt Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package com.bkahlert.kommons.test

import io.kotest.assertions.assertSoftly

/** Asserts the specified [softAssertions]. */
public inline fun  test(softAssertions: () -> R) {
    assertSoftly(softAssertions)
}

@Deprecated("use test", replaceWith = ReplaceWith("test(softAssertions)", "com.bkahlert.kommons.test.test"))
/** Asserts the specified [softAssertions]. */
public inline fun  tests(softAssertions: () -> R) {
    assertSoftly(softAssertions)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy