OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library unittest.throws_matchers; |
| 6 |
| 7 import 'package:matcher/matcher.dart' hide Throws; |
| 8 |
| 9 import 'throws_matcher.dart'; |
| 10 |
| 11 /// A matcher for functions that throw ArgumentError. |
| 12 const Matcher throwsArgumentError = const Throws(isArgumentError); |
| 13 |
| 14 /// A matcher for functions that throw ConcurrentModificationError. |
| 15 const Matcher throwsConcurrentModificationError = |
| 16 const Throws(isConcurrentModificationError); |
| 17 |
| 18 /// A matcher for functions that throw CyclicInitializationError. |
| 19 const Matcher throwsCyclicInitializationError = |
| 20 const Throws(isCyclicInitializationError); |
| 21 |
| 22 /// A matcher for functions that throw Exception. |
| 23 const Matcher throwsException = const Throws(isException); |
| 24 |
| 25 /// A matcher for functions that throw FormatException. |
| 26 const Matcher throwsFormatException = const Throws(isFormatException); |
| 27 |
| 28 /// A matcher for functions that throw NoSuchMethodError. |
| 29 const Matcher throwsNoSuchMethodError = const Throws(isNoSuchMethodError); |
| 30 |
| 31 /// A matcher for functions that throw NullThrownError. |
| 32 const Matcher throwsNullThrownError = const Throws(isNullThrownError); |
| 33 |
| 34 /// A matcher for functions that throw RangeError. |
| 35 const Matcher throwsRangeError = const Throws(isRangeError); |
| 36 |
| 37 /// A matcher for functions that throw StateError. |
| 38 const Matcher throwsStateError = const Throws(isStateError); |
| 39 |
| 40 /// A matcher for functions that throw Exception. |
| 41 const Matcher throwsUnimplementedError = const Throws(isUnimplementedError); |
| 42 |
| 43 /// A matcher for functions that throw UnsupportedError. |
| 44 const Matcher throwsUnsupportedError = const Throws(isUnsupportedError); |
OLD | NEW |