Files
kotlin-fork/backend.native/tests/testing/stacktrace.kt
T
2019-04-17 16:34:51 +07:00

25 lines
318 B
Kotlin

package kotlin.test.tests
import kotlin.test.*
@Ignore
class Ignored {
@Test
fun foo() {}
}
class Failed {
@Test
fun bar() {
try {
baz()
} catch(e: Exception) {
throw Exception("Bar", e)
}
}
fun baz() {
throw Exception("Baz")
}
}