10 lines
244 B
Plaintext
Vendored
10 lines
244 B
Plaintext
Vendored
import kotlin.test.assertFailsWith
|
|
|
|
// INTENTION_TEXT: "Add import for 'kotlin.test.assertFailsWith'"
|
|
// RUNTIME_WITH_KOTLIN_TEST
|
|
|
|
fun foo() {
|
|
<caret>assertFailsWith<Exception>("", {})
|
|
assertFailsWith(RuntimeException::class, "", {})
|
|
}
|