Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
plugins
/
power-assert
/
testData
/
helpers
/
utils.kt
blob: 1e27f36debe6d03c54022b969c6a29c894e568f9 [
file
]
fun expectThrowableMessage
(
block
:
()
->
Unit
):
String
{
try
{
block
()
throw
AssertionError
(
"no failure"
)
}
catch
(
e
:
Throwable
)
{
return
e
.
message
?:
throw
AssertionError
(
"no message"
)
}
}