524f0d335e
^KT-61259
15 lines
383 B
Kotlin
Vendored
15 lines
383 B
Kotlin
Vendored
import kotlinx.cinterop.*
|
|
import kotlin.test.*
|
|
import objcTests.*
|
|
|
|
@Test fun testExceptions() {
|
|
assertFailsWith<MyException> {
|
|
ExceptionThrowerManager.throwExceptionWith(object : NSObject(), ExceptionThrowerProtocol {
|
|
override fun throwException() {
|
|
throw MyException()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
private class MyException : Throwable() |