Add range iteration tests for rangeUntil
#KT-52932
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
||||
// !LANGUAGE: +RangeUntilOperator
|
||||
// WITH_STDLIB
|
||||
|
||||
|
||||
|
||||
@OptIn(ExperimentalStdlibApi::class)
|
||||
fun box(): String {
|
||||
val list1 = ArrayList<Int>()
|
||||
for (i in 1..<5) {
|
||||
list1.add(i)
|
||||
if (list1.size > 23) break
|
||||
}
|
||||
if (list1 != listOf<Int>(1, 2, 3, 4)) {
|
||||
return "Wrong elements for 1..<5: $list1"
|
||||
}
|
||||
|
||||
val list2 = ArrayList<Int>()
|
||||
for (i in 1.toByte()..<5.toByte()) {
|
||||
list2.add(i)
|
||||
if (list2.size > 23) break
|
||||
}
|
||||
if (list2 != listOf<Int>(1, 2, 3, 4)) {
|
||||
return "Wrong elements for 1.toByte()..<5.toByte(): $list2"
|
||||
}
|
||||
|
||||
val list3 = ArrayList<Int>()
|
||||
for (i in 1.toShort()..<5.toShort()) {
|
||||
list3.add(i)
|
||||
if (list3.size > 23) break
|
||||
}
|
||||
if (list3 != listOf<Int>(1, 2, 3, 4)) {
|
||||
return "Wrong elements for 1.toShort()..<5.toShort(): $list3"
|
||||
}
|
||||
|
||||
val list4 = ArrayList<Long>()
|
||||
for (i in 1L..<5L) {
|
||||
list4.add(i)
|
||||
if (list4.size > 23) break
|
||||
}
|
||||
if (list4 != listOf<Long>(1, 2, 3, 4)) {
|
||||
return "Wrong elements for 1L..<5L: $list4"
|
||||
}
|
||||
|
||||
val list5 = ArrayList<Char>()
|
||||
for (i in 'a'..<'d') {
|
||||
list5.add(i)
|
||||
if (list5.size > 23) break
|
||||
}
|
||||
if (list5 != listOf<Char>('a', 'b', 'c')) {
|
||||
return "Wrong elements for 'a'..<'d': $list5"
|
||||
}
|
||||
|
||||
return "OK"
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
// Auto-generated by org.jetbrains.kotlin.generators.tests.GenerateRangesCodegenTestData. DO NOT EDIT!
|
||||
// !LANGUAGE: +RangeUntilOperator
|
||||
// WITH_STDLIB
|
||||
|
||||
|
||||
@@ -7,6 +8,7 @@ val MinB = Byte.MIN_VALUE
|
||||
val MinS = Short.MIN_VALUE
|
||||
val MinL = Long.MIN_VALUE
|
||||
|
||||
@OptIn(ExperimentalStdlibApi::class)
|
||||
fun box(): String {
|
||||
val list1 = ArrayList<Int>()
|
||||
for (i in 0.toByte()..MinB step 3) {
|
||||
@@ -80,5 +82,41 @@ fun box(): String {
|
||||
return "Wrong elements for 0L until MinL step 3: $list8"
|
||||
}
|
||||
|
||||
val list9 = ArrayList<Int>()
|
||||
for (i in 0.toByte()..<MinB step 3) {
|
||||
list9.add(i)
|
||||
if (list9.size > 23) break
|
||||
}
|
||||
if (list9 != listOf<Int>()) {
|
||||
return "Wrong elements for 0.toByte()..<MinB step 3: $list9"
|
||||
}
|
||||
|
||||
val list10 = ArrayList<Int>()
|
||||
for (i in 0.toShort()..<MinS step 3) {
|
||||
list10.add(i)
|
||||
if (list10.size > 23) break
|
||||
}
|
||||
if (list10 != listOf<Int>()) {
|
||||
return "Wrong elements for 0.toShort()..<MinS step 3: $list10"
|
||||
}
|
||||
|
||||
val list11 = ArrayList<Int>()
|
||||
for (i in 0..<MinI step 3) {
|
||||
list11.add(i)
|
||||
if (list11.size > 23) break
|
||||
}
|
||||
if (list11 != listOf<Int>()) {
|
||||
return "Wrong elements for 0..<MinI step 3: $list11"
|
||||
}
|
||||
|
||||
val list12 = ArrayList<Long>()
|
||||
for (i in 0L..<MinL step 3) {
|
||||
list12.add(i)
|
||||
if (list12.size > 23) break
|
||||
}
|
||||
if (list12 != listOf<Long>()) {
|
||||
return "Wrong elements for 0L..<MinL step 3: $list12"
|
||||
}
|
||||
|
||||
return "OK"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user