Drop some obsolete TODOs in MapJsTest

This commit is contained in:
Zalim Bashorov
2014-12-24 16:20:43 +03:00
parent 9ab045e598
commit 51724e4b0d
+1 -8
View File
@@ -61,8 +61,7 @@ class LinkedHashMapTest : MapJsTest() {
} }
abstract class MapJsTest { abstract class MapJsTest {
//TODO: replace `array(...).toList()` to `listOf(...)` val KEYS = listOf("zero", "one", "two", "three")
val KEYS = array("zero", "one", "two", "three").toList()
val VALUES = array(0, 1, 2, 3).toList() val VALUES = array(0, 1, 2, 3).toList()
val SPECIAL_NAMES = array("__proto__", "constructor", "toString", "toLocaleString", "valueOf", "hasOwnProperty", "isPrototypeOf", "propertyIsEnumerable") val SPECIAL_NAMES = array("__proto__", "constructor", "toString", "toLocaleString", "valueOf", "hasOwnProperty", "isPrototypeOf", "propertyIsEnumerable")
@@ -104,7 +103,6 @@ abstract class MapJsTest {
assertEquals(null, map.get("foo")) assertEquals(null, map.get("foo"))
} }
/* TODO: fix after switch to use compiled stdlib (need drop js.Map<K,V>.set(V))
test fun mapPut() { test fun mapPut() {
val map = emptyMutableMap() val map = emptyMutableMap()
@@ -120,7 +118,6 @@ abstract class MapJsTest {
assertEquals(0, map["foo"]) assertEquals(0, map["foo"])
assertEquals(2, map["bar"]) assertEquals(2, map["bar"])
} }
*/
test fun sizeAndEmptyForEmptyMap() { test fun sizeAndEmptyForEmptyMap() {
val data = emptyMap() val data = emptyMap()
@@ -251,9 +248,6 @@ abstract class MapJsTest {
assertEquals(null, map.remove(KEY)) assertEquals(null, map.remove(KEY))
assertTrue(map.isEmpty()) assertTrue(map.isEmpty())
} }
/*
TODO fix bug with .set() on Map...
test fun setViaIndexOperators() { test fun setViaIndexOperators() {
val map = HashMap<String, String>() val map = HashMap<String, String>()
@@ -266,7 +260,6 @@ abstract class MapJsTest {
assertEquals(map.size(), 1) assertEquals(map.size(), 1)
assertEquals("James", map["name"]) assertEquals("James", map["name"])
} }
*/
test fun createUsingPairs() { test fun createUsingPairs() {
val map = mapOf(Pair("a", 1), Pair("b", 2)) val map = mapOf(Pair("a", 1), Pair("b", 2))