blob: ee0eb8582c1f283a2770937ab8b9b220e3785cca [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" as allQueueTests;
import "removeWhere_A01_t01.test.dart" as removeWhere_A01_t01;
import "retainWhere_A01_t01.test.dart" as retainWhere_A01_t01;
ListQueue create([Iterable content]) {
if (content==null) {
return new ListQueue();
} else {
return new ListQueue.from(content);
}
}
main() {
allQueueTests.test(create);
removeWhere_A01_t01.test(create);
retainWhere_A01_t01.test(create);
}