aba7706dec
Added creation and initialization of the test module and its dependencies. When looking at the emptyProgression test, I found that getProgressionLastElement was not found, which should be resolved from the dependencies.
55 lines
1.4 KiB
Kotlin
Vendored
55 lines
1.4 KiB
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
|
// WITH_RUNTIME
|
|
|
|
|
|
|
|
fun box(): String {
|
|
val list1 = ArrayList<Int>()
|
|
for (i in 3..9 step 2) {
|
|
list1.add(i)
|
|
if (list1.size > 23) break
|
|
}
|
|
if (list1 != listOf<Int>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3..9 step 2: $list1"
|
|
}
|
|
|
|
val list2 = ArrayList<Int>()
|
|
for (i in 3.toByte()..9.toByte() step 2) {
|
|
list2.add(i)
|
|
if (list2.size > 23) break
|
|
}
|
|
if (list2 != listOf<Int>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3.toByte()..9.toByte() step 2: $list2"
|
|
}
|
|
|
|
val list3 = ArrayList<Int>()
|
|
for (i in 3.toShort()..9.toShort() step 2) {
|
|
list3.add(i)
|
|
if (list3.size > 23) break
|
|
}
|
|
if (list3 != listOf<Int>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3.toShort()..9.toShort() step 2: $list3"
|
|
}
|
|
|
|
val list4 = ArrayList<Long>()
|
|
for (i in 3L..9L step 2L) {
|
|
list4.add(i)
|
|
if (list4.size > 23) break
|
|
}
|
|
if (list4 != listOf<Long>(3, 5, 7, 9)) {
|
|
return "Wrong elements for 3L..9L step 2L: $list4"
|
|
}
|
|
|
|
val list5 = ArrayList<Char>()
|
|
for (i in 'c'..'g' step 2) {
|
|
list5.add(i)
|
|
if (list5.size > 23) break
|
|
}
|
|
if (list5 != listOf<Char>('c', 'e', 'g')) {
|
|
return "Wrong elements for 'c'..'g' step 2: $list5"
|
|
}
|
|
|
|
return "OK"
|
|
}
|