Files
kotlin-fork/plugins/uast-kotlin/tests/KotlinUastResolveTest.kt
T
Nicolay Mitropolsky c139901889 Uast: all Kotlin versions of org.jetbrains.uast.test.* moved to org.jetbrains.uast.test.*.kotlin
To avoid having same class names in Kotlin and IDEA
2019-01-15 17:22:04 +03:00

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")
}