Files
kotlin-fork/plugins/uast-kotlin/tests/KotlinUastValuesTest.kt
T

24 lines
482 B
Kotlin

package org.jetbrains.uast.test.kotlin
import org.junit.Test
class KotlinUastValuesTest : AbstractKotlinValuesTest() {
@Test
fun testAssertion() = doTest("Assertion")
@Test
fun testDelegate() = doTest("Delegate")
@Test
fun testIn() = doTest("In")
@Test
fun testLocalDeclarations() = doTest("LocalDeclarations")
@Test
fun testSimple() = doTest("Simple")
@Test
fun testStringTemplateComplex() = doTest("StringTemplateComplex")
}