blob: a06322ced2dbbe5b864133287f263a8140a876ec [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 clear()
* Throws an UnsupportedError, and retains all elements,
* if the length of the list cannot be changed.
* @description Checks that exception is thrown if the list is not extendable.
* @author kaigorodov
*/
library clear_A02_t01;
import "../../../Utils/expect.dart";
void check(List a) {
Expect.throws(() {a.clear();}, (e) => e is UnsupportedError);
}
test(List create([int length])) {
List a = create(0);
check(a);
a = create(1);
a[0] = null;
check(a);
a = create(3);
a[0] = 1;
a[1] = 1;
a[2] = 1;
check(a);
a = create(89356);
check(a);
}