blob: 3b37b4a64d1d25e59df4760352fd3eb802d6c5b7 [file] [log] [blame]
/*
* Copyright (c) 2013, 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 add(E value)
* Throws UnsupportedError if the list is not extendable.
* @description Checks that UnsupportedError exception is thrown
* if the list is not extendable.
* @author kaigorodov
*/
library add_A02_t01;
import "../../../Utils/expect.dart";
test(List create([int length])) {
Expect.throws(() {create(1).add(null);}, (e) => e is UnsupportedError);
Expect.throws(() {create(100).add(null);}, (e) => e is UnsupportedError);
}