Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: pkg/matcher/lib/src/throws_matchers.dart

Issue 438473002: pkg/matcher: refactored code around data-structure vs execution-based matchers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/matcher/lib/src/throws_matcher.dart ('k') | pkg/matcher/lib/src/util.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 matcher.throws_matchers;
6
7 import 'error_matchers.dart';
8 import 'interfaces.dart';
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);
OLDNEW
« no previous file with comments | « pkg/matcher/lib/src/throws_matcher.dart ('k') | pkg/matcher/lib/src/util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698