blob: b2bcecace946b2b377bc973c1c4ce9f99555fc8b [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 setAll(int index, Iterable<E> iterable)
* Overwrites elements of this with the elemenst of [iterable]
* starting at position [index] in the list.
* This operation does not increase the length of [this].
* @description Checks that method overwrites elements correctly.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var l = new Int64List.fromList([0,0,0,0,0,0,0,0,0, 0]);
l.setAll(9, [1]);
Expect.listEquals([0,0,0,0,0,0,0,0, 0,1], l);
l.setAll(2, [2, 2, 2, 2]);
Expect.listEquals([0,0,2,2,2,2,0,0,0,1], l);
l.setAll(0, [3, 3, 3, 3, 3]);
Expect.listEquals([3,3,3,3,3,2,0,0,0,1], l);
l.setAll(0, [11, 11, 11, 11, 11, 11, 11, 11, 11, 11]);
Expect.listEquals([11, 11, 11, 11, 11, 11, 11, 11, 11, 11], l);
l.setAll(0, []);
Expect.listEquals([11, 11, 11, 11, 11, 11, 11, 11, 11, 11], l);
}