Files
kotlin-fork/idea/testData/quickfix/libraries/testNG.kt
T
2015-10-08 13:15:15 +03:00

12 lines
286 B
Kotlin
Vendored

// "Add 'testng' to classpath" "true"
// ERROR: Unresolved reference: BeforeMethod
// ERROR: Unresolved reference: testng
// UNCONFIGURE_LIBRARY: testng
package some
abstract class KBase {
@<caret>BeforeMethod
fun setUp() {
throw UnsupportedOperationException()
}
}