blob: 7a3edc45f1c82b9e21842260b92609db80af4f91 [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.
*/
/**
* @description All BidirectionalIterator tests runner
* @author sgrekhov@unipro.ru
*/
library bidirectional_iterator_all_tests;
import "inheritedTests.lib.dart" as lib_inherited_tests;
import "movePrevious_A01_t01.test.dart" as libMovePrevious_01;
import "movePrevious_A01_t02.test.dart" as libMovePrevious_02;
test(BidirectionalIterator create([Iterable? content]), {bool isSet:false}) {
lib_inherited_tests.test(create, isSet:isSet);
libMovePrevious_01.test(create);
libMovePrevious_02.test(create);
}