blob: e533ec28875ef6146d2334ca094d30e22cf7bc96 [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 E removeAt(int index)
* Throws an ArgumentError if index is not an int.
* @description Checks that an ArgumentError is thrown if index is not an int.
* @author kaigorodov
*/
library removeAt_A02_t01;
import "../../../Utils/expect.dart";
test(List create([int length])) {
check(List a0, var index) {
// List a=create();
// a.addAll(a0);
List a=create();
a.addAll(a0);
Expect.throws(() {
a.removeAt(index);
},
(e) => (e is ArgumentError) || (e is TypeError)
);
}
List a0=[1,3,3,4,5,6];
check(a0, true);
check(a0, 0.0);
check(a0, "3");
check(a0, [3]);
}