- bytecodeTextMultifile - framework for bytecode text tests

with multiple Kotlin source files
- bytecodeTextMultifile/partMembersCall, initial import
This commit is contained in:
Dmitry Petrov
2015-09-09 18:36:54 +03:00
parent 2931e474e1
commit 5f9a59d655
7 changed files with 123 additions and 21 deletions
@@ -203,10 +203,14 @@ fun main(args: Array<String>) {
model("codegen/script", extension = "kts")
}
testClass(javaClass<AbstractBytecodeTextTest>()) {
testClass(AbstractBytecodeTextTest::class.java) {
model("codegen/bytecodeText")
}
testClass(AbstractBytecodeTextTest::class.java, "BytecodeTextMultifileTestGenerated") {
model("codegen/bytecodeTextMultifile", extension = null, recursive = false, testMethod = "doTestMultiFile")
}
testClass(javaClass<AbstractBytecodeListingTest>()) {
model("codegen/bytecodeListing")
}