blob: dc11c788bde0ea696ce11a21f19d27904de4e68b [file]
fun expectThrowableMessage(block: () -> Unit): String {
try {
block()
throw AssertionError("no failure")
} catch (e: Throwable) {
return "---${e.message}---\n" ?: throw AssertionError("no message")
}
}