blob: 38217d9d5434a1fa2c079fff3a74dcb2e38d57f9 [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 abstract E singleWhere(bool test(E value))
* If no or more than one element match then a StateError is thrown.
* @description Checks that a StateError is thrown if no element match.
* @author kaigorodov
*/
import "dart:collection";
import "../../../Utils/expect.dart";
check(List a, test(value)) {
DoubleLinkedQueue queue = new DoubleLinkedQueue.from(a);
Expect.throws(() {
queue.singleWhere(test);
},
(e)=> e is StateError
);
}
main() {
check([1,2,-3,4], (value)=>value==0);
check(const[1,2,-5,-6], (value)=>value>2);
}