blob: c95006a5159c7309c8fad3d22266b9894ee24b47 [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> iterable)
* Throws an UnsupportedError if this list is not extensible.
* @description Checks that UnsupportedError is thrown
* if the list is not extendable.
* @author vasya
*/
library addAll_A02_t01;
import "../../../Utils/expect.dart";
test(List<E> create<E>([int length, E fill])) {
void check(Iterable content, collection) {
List list = create(collection.length, 0);
list.setRange(0, collection.length, collection);
Expect.throws(() {list.addAll(collection);}, (e) => e is UnsupportedError);
}
check(new List.filled(100, ""), ["1", "2", "3"]);
check(new List.from(new List.empty(), growable:false), [null]);
check(new List.filled(1, 1), new List.filled(34567, 0));
check(const [], new List.filled(34567, 0));
}