blob: 89b2b33e906d9075b5ff2f9eb559b8b6236ef092 [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 Iterable<E> getRange(int start, int end)
/// Returns an Iterable that iterators over the elements in the range start to
/// end exclusive. The result of this function is backed by this.
/// @description Checks that an empty list is returned if end - start = 0.
/// @author vasya
library getRange_A01_t02;
import "../../../Utils/expect.dart";
test(List<E> create<E>([int length, E fill])) {
void check(List src, int start) {
List a = create();
a.addAll(src);
var dst = a.getRange(start, start);
Expect.equals(0, dst.length);
}
List l = new List.filled(1000, 0);
check(l, 0);
check(l, 100);
check(l, 999);
check(l, 1000);
l = [1, 2, 3];
check(l, 0);
check(l, 1);
check(l, 2);
check(l, 3);
}