| Index: tests/corelib/src/ListSetRangeTest.dart
 | 
| diff --git a/tests/corelib/src/ListSetRangeTest.dart b/tests/corelib/src/ListSetRangeTest.dart
 | 
| deleted file mode 100644
 | 
| index ad004a380564be7567a2a5b998eb00c0eceb4c91..0000000000000000000000000000000000000000
 | 
| --- a/tests/corelib/src/ListSetRangeTest.dart
 | 
| +++ /dev/null
 | 
| @@ -1,90 +0,0 @@
 | 
| -// 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.
 | 
| -
 | 
| -main() {
 | 
| -  var list = [];
 | 
| -  list.setRange(0, 0, const []);
 | 
| -  list.setRange(0, 0, []);
 | 
| -  list.setRange(0, 0, const [], 1);
 | 
| -  list.setRange(0, 0, [], 1);
 | 
| -  Expect.equals(0, list.length);
 | 
| -  expectIOORE(() { list.setRange(0, 1, []); });
 | 
| -  expectIOORE(() { list.setRange(0, 1, [], 1); });
 | 
| -  expectIOORE(() { list.setRange(0, 1, [1], 0); });
 | 
| -
 | 
| -  list.add(1);
 | 
| -  list.setRange(0, 0, [], 0);
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(1, list[0]);
 | 
| -  list.setRange(0, 0, const [], 0);
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(1, list[0]);
 | 
| -
 | 
| -  expectIOORE(() { list.setRange(0, 2, [1, 2]); });
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(1, list[0]);
 | 
| -
 | 
| -  expectIOORE(() { list.setRange(0, 1, [1, 2], 2); });
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(1, list[0]);
 | 
| -
 | 
| -  list.setRange(0, 1, [2], 0);
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(2, list[0]);
 | 
| -
 | 
| -  list.setRange(0, 1, const [3], 0);
 | 
| -  Expect.equals(1, list.length);
 | 
| -  Expect.equals(3, list[0]);
 | 
| -
 | 
| -  list.addAll([4, 5, 6]);
 | 
| -  Expect.equals(4, list.length);
 | 
| -  list.setRange(0, 4, [1, 2, 3, 4]);
 | 
| -  Expect.listEquals([1, 2, 3, 4], list);
 | 
| -
 | 
| -  list.setRange(2, 2, [5, 6, 7, 8]);
 | 
| -  Expect.listEquals([1, 2, 5, 6], list);
 | 
| -
 | 
| -  expectIOORE(() { list.setRange(4, 1, [5, 6, 7, 8]); });
 | 
| -  Expect.listEquals([1, 2, 5, 6], list);
 | 
| -
 | 
| -  list.setRange(1, 2, [9, 10, 11, 12]);
 | 
| -  Expect.listEquals([1, 9, 10, 6], list);
 | 
| -
 | 
| -  testNegativeIndices();
 | 
| -
 | 
| -  testNonExtendableList();
 | 
| -}
 | 
| -
 | 
| -void expectIOORE(Function f) {
 | 
| -  Expect.throws(f, (e) => e is IndexOutOfRangeException);
 | 
| -}
 | 
| -
 | 
| -void testNegativeIndices() {
 | 
| -  var list = [1, 2];
 | 
| -  expectIOORE(() { list.setRange(-1, 1, [1]); });
 | 
| -  expectIOORE(() { list.setRange(0, 1, [1], -1); });
 | 
| -
 | 
| -  // A negative length throws an IllegalArgumentException.
 | 
| -  Expect.throws(() { list.setRange(0, -1, [1]); },
 | 
| -      (e) => e is IllegalArgumentException);
 | 
| -
 | 
| -  Expect.throws(() { list.setRange(-1, -1, [1], -1); },
 | 
| -      (e) => e is IllegalArgumentException);
 | 
| -  Expect.listEquals([1, 2], list);
 | 
| -
 | 
| -  // A zero length prevails, and does not throw an exception.
 | 
| -  list.setRange(-1, 0, [1]);
 | 
| -  Expect.listEquals([1, 2], list);
 | 
| -
 | 
| -  list.setRange(0, 0, [1], -1);
 | 
| -  Expect.listEquals([1, 2], list);
 | 
| -}
 | 
| -
 | 
| -void testNonExtendableList() {
 | 
| -  var list = new List<int>(6);
 | 
| -  Expect.listEquals([null, null, null, null, null, null], list);
 | 
| -  list.setRange(0, 3, [1, 2, 3, 4]);
 | 
| -  list.setRange(3, 3, [1, 2, 3, 4]);
 | 
| -  Expect.listEquals([1, 2, 3, 1, 2, 3], list);
 | 
| -}
 | 
| 
 |