blob: 08f9ce656e724cc5be23074b77eaf01866fbb20c [file] [log] [blame]
// "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()
}
}