blob: f37ebd72e2fe8012e48a2e173ff6b36d11479104 [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 abstract void addAll(Map<K, V> other)
* Adds all key-value pairs of other to this map.
* @description Checks that all key-value pairs of other map are added to this
* map.
* @author kaigorodov
*/
library addAll_A01_t01;
import "../../../Utils/expect.dart";
test(Map create([Map content])) {
Map map = create();
Map other = {1: 0, 2: 2, 3.0: null};
map.addAll(other);
map.forEach ((var key, var value) {
Expect.identical(other[key], value);
});
other.forEach ((var key, var value) {
Expect.identical(map[key], value);
});
map.addAll(other);
map.forEach ((var key, var value) {
Expect.identical(other[key], value);
});
other.forEach ((var key, var value) {
Expect.identical(map[key], value);
});
}