Files
kotlin-fork/idea/testData/quickfix/libraries/junit.kt.after
T

15 lines
303 B
Plaintext
Vendored

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