13 lines
302 B
Kotlin
Vendored
13 lines
302 B
Kotlin
Vendored
// "Add 'testng' to classpath" "true"
|
|
// ERROR: Unresolved reference: BeforeMethod
|
|
// ERROR: Unresolved reference: testng
|
|
// UNCONFIGURE_LIBRARY: testng
|
|
// WITH_RUNTIME
|
|
package some
|
|
|
|
abstract class KBase {
|
|
@<caret>BeforeMethod
|
|
fun setUp() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |