0df71bd696
- initialize environment only once in setUp() - add comments on why some tests are disabled - modify and rename some tests - re-enable now working tests - extract some tests into files with box() - remove useless 'throws' declarations and commented code
7 lines
120 B
Kotlin
7 lines
120 B
Kotlin
fun box(): String {
|
|
for (x in ByteArray(5)) {
|
|
if (x != 0.toByte()) return "Fail $x"
|
|
}
|
|
return "OK"
|
|
}
|