Quick Fixes: Implement quickfix for missing library
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// "Add 'testng' to classpath" "true"
|
||||
// ERROR: Unresolved reference: BeforeMethod
|
||||
// ERROR: Unresolved reference: testng
|
||||
// UNCONFIGURE_LIBRARY: testng
|
||||
package some
|
||||
|
||||
import org.testng.annotations.BeforeMethod
|
||||
|
||||
abstract class KBase {
|
||||
@BeforeMethod
|
||||
fun setUp() {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user