15 lines
485 B
Kotlin
15 lines
485 B
Kotlin
package org.jetbrains.uast.test.kotlin
|
|
|
|
import org.jetbrains.uast.test.common.IdentifiersTestBase
|
|
import java.io.File
|
|
|
|
|
|
abstract class AbstractKotlinIdentifiersTest : AbstractKotlinUastTest(), IdentifiersTestBase {
|
|
|
|
private fun getTestFile(testName: String, ext: String) =
|
|
File(File(AbstractKotlinUastTest.TEST_KOTLIN_MODEL_DIR, testName).canonicalPath + '.' + ext)
|
|
|
|
override fun getIdentifiersFile(testName: String): File = getTestFile(testName, "identifiers.txt")
|
|
|
|
|
|
} |