blob: bffed2d9b079c80b03efbd1d8d7e5be9306d879c [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);
});
}