blob: e0a5f7df3cdd6b980ba36586a0fa6c1317b32457 [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 nextEntry() → DoubleLinkedQueueEntry<E>
* Returns the next entry or [null] if there is none.
* @description Checks that nextEntry() returns the next element
* @author sgrekhov@unipro.ru
*/
import "../../../Utils/expect.dart";
import "dart:collection";
main() {
DoubleLinkedQueue queue = new DoubleLinkedQueue();
queue.add(1);
queue.add(2);
queue.add(3);
Expect.equals(2, queue.firstEntry()?.nextEntry()?.element);
Expect.equals(3, queue.firstEntry()?.nextEntry()?.nextEntry()?.element);
Expect.isNull(queue.firstEntry()?.nextEntry()?.nextEntry()?.nextEntry());
}