Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Unified Diff: tests/corelib/map_test.dart

Issue 1980663002: Make json-maps implement Map<String, dynamic>. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Changelog and test updates Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/corelib/json_map_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/map_test.dart
diff --git a/tests/corelib/map_test.dart b/tests/corelib/map_test.dart
index 0acdbfa35347c85f3fecad4399ed3921fa1083d9..9881be945b01caeba2d0f85faa0f3f98b5f1aa64 100644
--- a/tests/corelib/map_test.dart
+++ b/tests/corelib/map_test.dart
@@ -21,8 +21,6 @@ void main() {
test(new MapView(new SplayTreeMap()));
test(new MapBaseMap());
test(new MapMixinMap());
- test(newJsonMap());
- test(newJsonMapCustomReviver());
testLinkedHashMap();
testMapLiteral();
testNullValue();
@@ -53,8 +51,6 @@ void main() {
testNumericKeys(new LinkedHashMap<num, String>.identity());
testNumericKeys(new MapBaseMap<num, String>());
testNumericKeys(new MapMixinMap<num, String>());
- testNumericKeys(newJsonMap());
- testNumericKeys(newJsonMapCustomReviver());
testNaNKeys(new Map());
testNaNKeys(new Map<num, String>());
@@ -64,8 +60,6 @@ void main() {
testNaNKeys(new LinkedHashMap<num, String>());
testNaNKeys(new MapBaseMap<num, String>());
testNaNKeys(new MapMixinMap<num, String>());
- testNaNKeys(newJsonMap());
- testNaNKeys(newJsonMapCustomReviver());
// Identity maps fail the NaN-keys tests because the test assumes that
// NaN is not equal to NaN.
@@ -96,8 +90,6 @@ void main() {
testIterationOrder(new LinkedHashMap());
testIterationOrder(new LinkedHashMap.identity());
- testIterationOrder(newJsonMap());
- testIterationOrder(newJsonMapCustomReviver());
testOtherKeys(new SplayTreeMap<int, int>());
testOtherKeys(
@@ -121,8 +113,6 @@ void main() {
isValidKey: (v) => v is int));
testOtherKeys(new MapBaseMap<int, int>());
testOtherKeys(new MapMixinMap<int, int>());
- testOtherKeys(newJsonMap());
- testOtherKeys(newJsonMapCustomReviver());
testUnmodifiableMap(const {1: 37});
testUnmodifiableMap(new UnmodifiableMapView({1: 37}));
« no previous file with comments | « tests/corelib/json_map_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698