blob: d63f5d5a658ffa1a431f7a9f74e33750d9962553 [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 E removeLast()
* Removes and returns the last element of the queue.
* @description Checks that exactly the last element is removed and returned.
* @author kaigorodov
*/
import "dart:collection";
import "../../../Utils/expect.dart";
check(List list) {
DoubleLinkedQueue queue = new DoubleLinkedQueue.from(list);
while(queue.length > 0) {
Expect.equals(queue.removeLast(), list.last);
Expect.equals(queue.length, list.length - 1);
list.removeLast();
int i = 0;
queue.forEach((var element) {
Expect.equals(list[i++], element);
});
}
}
main() {
check([1, "2", true]);
check([1, 1, 1, 1, 1]);
check([1, "128", 1, 1, 1]);
check([1, 1, 1, -7, 1]);
}