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