blob: deb859a1398737b0faa9ad08c15d6db511475700 [file]
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")
}
}