blob: 95e3d8df0df907b7d77763fef9c531c9dedff28f [file] [log] [blame]
// Copyright (c) 2016, 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 List<E> sublist(int start, [int end])
/// ...
/// If end is omitted, the length of this is used.
/// @description Checks that if end is omitted, the length of this is used.
/// @author sgrekhov@unipro.ru
library sublist_A02_t01;
import "../../../Utils/expect.dart";
test(List<E> create<E>([int length, E fill])) {
List lst = create();
lst.addAll([0, 1, 2, 3, 4]);
List sub = lst.sublist(2);
Expect.equals(3, sub.length);
Expect.equals(2, sub[0]);
Expect.equals(3, sub[1]);
Expect.equals(4, sub[2]);
}