// "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() | |
} | |
} |