blob: 5b978d189c4263960edb4d6a41d7a38d10659324 [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.
// @dart = 2.9
/// @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));
}