[K/N][tests] Migrate entry point runtime tests to new testing infra ^KT-61259

This commit is contained in:
Alexander Shabalin
2023-11-06 18:59:35 +01:00
committed by Space Team
parent 0ab0607bbf
commit 340103098f
26 changed files with 199 additions and 135 deletions
@@ -0,0 +1,7 @@
// PROGRAM_ARGS: AAA BB C
import kotlin.test.*
fun main(args: Array<String>) {
assertContentEquals(arrayOf("AAA", "BB", "C"), args)
}