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