1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
package org.jetbrains.uast.test.kotlin
import org.junit.Test
class KotlinUastTypesTest : AbstractKotlinTypesTest() {
@Test fun testLocalDeclarations() = doTest("LocalDeclarations")
@Test fun testUnexpectedContainerException() = doTest("UnexpectedContainerException")
@Test fun testCycleInTypeParameters() = doTest("CycleInTypeParameters")
@Test fun testEa101715() = doTest("ea101715")
@Test fun testStringTemplate() = doTest("StringTemplate")
@Test fun testStringTemplateComplex() = doTest("StringTemplateComplex")
}
|