commonMain.Assertions.kt Maven / Gradle / Ivy
import kotlin.test.fail
object Assertions {
suspend fun assertThrowsAsync(block: suspend () -> Unit) = try {
block()
fail("Did not get expected exception.")
} catch (expected: Exception) {
expected
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy