blob: 9c040e0b1a5268f146ef9f24f858915a8f35bb9a [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 create([int length])) {
void check(Iterable content, collection) {
List list = create(collection.length);
list.setRange(0, collection.length, collection);
Expect.throws(() {list.addAll(collection);}, (e) => e is UnsupportedError);
}
check(new List(100), ["1", "2", "3"]);
check(new List.from(new List(0), growable:false), [null]);
check(new List.filled(1, new List(1)), new List(34567));
check(const [], new List(34567));
}