blob: 380bd75fe1d9f42406e30eb2f75caff4287ce9c5 [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 dynamic lastWhere(bool test(E value), {Object orElse()})
* Returns the last element that satisfies the given predicate test.
* If none matches, the result of invoking the orElse function is returned.
* By default, when orElse is null, a StateError is thrown.
* @description Checks that a StateError is thrown when orElse is null and none matches.
* @author kaigorodov
*/
import "dart:collection";
import "../../../Utils/expect.dart";
check(List list) {
DoubleLinkedQueue queue = new DoubleLinkedQueue.from(list);
Expect.throws(() {
queue.lastWhere((int value)=>false);
},
(e)=> e is StateError
);
}
main() {
check(new List());
check([]);
check(const[]);
check(new List.from([]));
check([1,2,3]);
}