blob: aaa917b5397bc5e8bea156eee1e88f79abc0c4ae [file] [log] [blame]
// Copyright (c) 2013, 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 firstWhere(bool test(E element), {Object orElse()})
/// If orElse is omitted, it defaults to throwing a StateError.
/// @description Checks that a [StateError] is thrown if orElse is omitted.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> list) {
var l = new Float32List.fromList(list);
Expect.throws(() {
l.firstWhere((e) => false);
}, (e) => e is StateError);
}
main() {
check([]);
check([0.0]);
check([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]);
}