add tests for serializaion of nested classes and objects (builtins and js)

This commit is contained in:
Michael Nedzelsky
2015-05-20 12:14:59 +03:00
parent 6b64dcc4ee
commit 572ce47c25
4 changed files with 98 additions and 0 deletions
@@ -64,6 +64,10 @@ public class BuiltInsSerializerTest : TestCaseWithTmpdir() {
doTest("simple.kt")
}
fun testNestedClassesAndObjects() {
doTest("nestedClassesAndObjects.kt")
}
fun testCompileTimeConstants() {
doTest("compileTimeConstants.kt")
}
@@ -101,6 +101,10 @@ public class KotlinJavascriptSerializerTest : TestCaseWithTmpdir() {
doTest("builtinsSerializer/simple.kt")
}
fun testNestedClassesAndObjects() {
doTest("builtinsSerializer/nestedClassesAndObjects.kt")
}
fun testCompileTimeConstants() {
doTest("builtinsSerializer/compileTimeConstants.kt")
}