Regenerate range iteration tests
This commit is contained in:
+22
@@ -10,6 +10,8 @@ const val MaxB = Byte.MAX_VALUE
|
||||
const val MaxS = Short.MAX_VALUE
|
||||
const val MaxL = Long.MAX_VALUE
|
||||
const val MaxC = Char.MAX_VALUE
|
||||
const val MaxUI = UInt.MAX_VALUE
|
||||
const val MaxUL = ULong.MAX_VALUE
|
||||
|
||||
fun box(): String {
|
||||
val list1 = ArrayList<Int>()
|
||||
@@ -62,5 +64,25 @@ fun box(): String {
|
||||
return "Wrong elements for MaxC..MaxC step 1: $list5"
|
||||
}
|
||||
|
||||
val list6 = ArrayList<UInt>()
|
||||
val range6 = MaxUI..MaxUI step 1
|
||||
for (i in range6) {
|
||||
list6.add(i)
|
||||
if (list6.size > 23) break
|
||||
}
|
||||
if (list6 != listOf<UInt>(MaxUI)) {
|
||||
return "Wrong elements for MaxUI..MaxUI step 1: $list6"
|
||||
}
|
||||
|
||||
val list7 = ArrayList<ULong>()
|
||||
val range7 = MaxUL..MaxUL step 1
|
||||
for (i in range7) {
|
||||
list7.add(i)
|
||||
if (list7.size > 23) break
|
||||
}
|
||||
if (list7 != listOf<ULong>(MaxUL)) {
|
||||
return "Wrong elements for MaxUL..MaxUL step 1: $list7"
|
||||
}
|
||||
|
||||
return "OK"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user