blob: 40ed7f2ca7ca4d3449c518accc62dcec42a6a394 [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(Iterable<E> elements)
* Adds all of elements to this Set.
* @description Adds some integers to the set and checks that all of the unique ones are actually added.
* @author pagolubev
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
Set<int> s = new Set<int>();
s.addAll([]);
Expect.isTrue(s.length == 0);
List<int> a = [1, 3, 3, 3, 7, -7, 3, 3, 9];
s.addAll(a);
Expect.isTrue(s.length == 5);
for(int i = 0; i < a.length; i++) {
Expect.isTrue(s.contains(a[i]));
}
}