blob: 0a2db34c7e15348a639ec41c6f2a6af8282e6163 [file] [log] [blame]
/*
* Copyright (c) 2013, 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
* void setRange(
* int start,
* int end,
* Iterable<E> iterable, [
* int skipCount = 0
* ])
* ...
* The range starts at [start] and has length [end] - [start]. An empty range
* (with end == start) is valid.
* @description Checks that the method has no effect if [end] equals [start].
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var l = new Uint8ClampedList.fromList([0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
l.setRange(1, 1, [1, 2, 3], 2);
Expect.listEquals([0, 0, 0, 0, 0, 0, 0, 0, 0, 0], l);
l.setRange(0, 0, [1, 2, 3], 0);
Expect.listEquals([0, 0, 0, 0, 0, 0, 0, 0, 0, 0], l);
l.setRange(10, 10, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 1);
Expect.listEquals([0, 0, 0, 0, 0, 0, 0, 0, 0, 0], l);
}