Files
kotlin-fork/idea/testData/quickfix/libraries/junit.kt
T
2015-10-08 13:15:15 +03:00

14 lines
294 B
Kotlin
Vendored

// "Add 'JUnit4' to classpath" "true"
// ERROR: Unresolved reference: Before
// ERROR: Unresolved reference: junit
// UNCONFIGURE_LIBRARY: JUnit4
package some
import org.<caret>junit.Before
open class KBase {
@Before
fun setUp() {
throw UnsupportedOperationException()
}
}