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

commonMain.Assertions.kt Maven / Gradle / Ivy

There is a newer version: 12.1.40
Show newest version
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