commonMain.com.zegreatrob.testmints.CaptureException.kt Maven / Gradle / Ivy
package com.zegreatrob.testmints
inline fun captureException(work: () -> Unit) = try {
work()
null
} catch (expectedFailure: Throwable) {
expectedFailure
}
package com.zegreatrob.testmints
inline fun captureException(work: () -> Unit) = try {
work()
null
} catch (expectedFailure: Throwable) {
expectedFailure
}