Files
kotlin-fork/plugins/uast-kotlin/tests/KotlinUastValuesTest.kt
T
Mikhail Glukhikh f179b2ba13 Test for KT-22527
2018-04-20 20:39:54 +03:00

21 lines
401 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")
}