Files
kotlin-fork/idea/testData/quickfix/libraries/testNG.kt.after
T

15 lines
339 B
Plaintext
Vendored

// "Add 'testng' to classpath" "true"
// ERROR: Unresolved reference: BeforeMethod
// ERROR: Unresolved reference: testng
// UNCONFIGURE_LIBRARY: testng
// WITH_RUNTIME
package some
import org.testng.annotations.BeforeMethod
abstract class KBase {
@BeforeMethod
fun setUp() {
throw UnsupportedOperationException()
}
}