Files
openide/jvm/jvm-analysis-kotlin-tests/testData/codeInspection/testfailedline/QualifiedTest.kt
Bart van Helvert 32a57be862 [jvm] IDEA-207545 Convert TestFailedLine inspection to UAST
GitOrigin-RevId: 921c7fe92dd5b27b9fe0105fffd9f93ffb0a3e98
2021-05-24 20:20:30 +00:00

9 lines
222 B
Kotlin

class QualifiedTest : junit.framework.TestCase() {
fun testFoo() {
Assertions.<warning descr="junit.framework.AssertionFailedError:">assertEquals</warning>()
}
object Assertions {
fun assertEquals() {}
}
}