blob: ad2ea57662ac34637c11fc00c47964bfc411e398 [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 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);
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]);
}