blob: 452ec441fd88b1ddc9a50a9b45238985c2b43b6c [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Applies [f] to each {key, value} pair of the map.
* @description Checks that keys and values can be changed in [f].
* @author msyabro
* @reviewer varlax
*/
import "../../../Utils/expect.dart";
import "dart:collection";
main() {
Map<String, Object> map = new Map<String, Object>();
map["1"] = 3;
map["2"] = 5;
Maps.forEach(map, (String key, int value) {
map[key] = value + 1;
});
Expect.isTrue(map["1"] == 4 && map["2"] == 6);
}