Files
kotlin-fork/testlib/test/StandardCollectionTest.kt
T
Stepan Koltsov ff74f8217b another "temporary" hack
I heard of some package merging problems, testlib declares std.test package,
and stdlib.jar has std package
2012-01-18 12:08:36 +04:00

25 lines
398 B
Kotlin

package test.collections
import std.*
import stdhack.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")}
}
}
*/
}