24 lines
393 B
Kotlin
24 lines
393 B
Kotlin
package test.collections
|
|
|
|
import std.*
|
|
import std.test.*
|
|
|
|
class StandardCollectionTest() : TestSupport() {
|
|
|
|
fun testDisabled() {
|
|
}
|
|
|
|
/*
|
|
fun testAny() {
|
|
// TODO requires KT-924 to be implemented
|
|
val data: Iterable<String> = std.util.arrayList("foo", "bar")
|
|
|
|
assert {
|
|
data.any{it.startsWith("f")}
|
|
}
|
|
assertNot {
|
|
data.any{it.startsWith("x")}
|
|
}
|
|
}
|
|
*/
|
|
} |