ff74f8217b
I heard of some package merging problems, testlib declares std.test package, and stdlib.jar has std package
25 lines
398 B
Kotlin
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")}
|
|
}
|
|
}
|
|
*/
|
|
}
|