c139901889
To avoid having same class names in Kotlin and IDEA
14 lines
395 B
Kotlin
14 lines
395 B
Kotlin
package org.jetbrains.uast.test.kotlin
|
|
|
|
import org.jetbrains.uast.UFile
|
|
import org.jetbrains.uast.test.common.kotlin.ResolveTestBase
|
|
import org.junit.Test
|
|
|
|
class KotlinUastResolveTest : AbstractKotlinUastTest(), ResolveTestBase {
|
|
override fun check(testName: String, file: UFile) {
|
|
super.check(testName, file)
|
|
}
|
|
|
|
@Test fun testMethodReference() = doTest("MethodReference")
|
|
}
|