blob: e1391c424b2c337edacb08e43303149762bb2502 [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 void clear()
* Removes all elements in the list.
* The length of the list becomes zero.
* @description Checks that the length of the list becomes zero.
* @author kaigorodov
*/
import "../../../Utils/expect.dart";
import "dart:collection";
import "LinkedList.lib.dart";
main() {
LinkedList a = new LinkedList();
Expect.isTrue(a.length == 0);
a.clear();
Expect.isTrue(a.length == 0);
a.add(new MyLinkedListEntry(null));
Expect.isTrue(a.length == 1);
a.clear();
Expect.isTrue(a.length == 0);
a=toLinkedList([1,2,3]);
Expect.isTrue(a.length == 3);
a.clear();
Expect.isTrue(a.length == 0);
a=toLinkedList(["one", "two", "three", "four"]);
Expect.isTrue(a.length == 4);
a.clear();
Expect.isTrue(a.length == 0);
a.clear();
Expect.isTrue(a.length == 0);
}