Stdlib: run all stdlib tests with JS backend(as possible).

This commit is contained in:
Zalim Bashorov
2014-10-10 17:10:17 +04:00
parent f20ee6df4b
commit f202ad9f98
18 changed files with 252 additions and 208 deletions
+3 -4
View File
@@ -1,16 +1,15 @@
package test.stdlib.issues
import kotlin.util.*
import kotlin.test.*
import junit.framework.TestCase
import org.junit.Test as test
private fun listDifference<T>(first : List<T>, second : List<T>) : List<T> {
return first.filter{ !second.contains(it) }.toList()
}
class StdLibIssuesTest() : TestCase() {
class StdLibIssuesTest {
fun test_KT_1131() {
test fun test_KT_1131() {
val data = arrayList("blah", "foo", "bar")
val filterValues = arrayList("bar", "something", "blah")