blob: b525c2f4da140a9dacfa30cc3e9b14d366abbca2 [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 Iterable<E>
/// @description Checks that all members of [Iterable] are implemented.
/// @author kaigorodov
import "dart:collection";
import "all_tests.lib.dart";
Queue create([Iterable? content]) {
if (content == null) {
return new Queue();
} else {
return new Queue.from(content);
}
}
main() {
test(create);
}