blob: 145a92f2024f139f0f661831b9e4abb4ad40af83 [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 Queue<E> abstract class
* Implements Queue<E>
* @description Checks that all members of [Queue] are implemented.
* @author kaigorodov
*/
import "dart:collection";
import "../Queue/allTests.lib.dart";
Iterable create([Iterable content]) {
DoubleLinkedQueue res = new DoubleLinkedQueue();
if (content!=null) {
res.addAll(content);
}
return res;
}
main() {
test(create);
}