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

Unified Diff: test/matchers_unminified_test.dart

Issue 840133003: matcher: fixed status file, formatting, tweaks to readme (Closed) Base URL: https://github.com/dart-lang/matcher.git@master
Patch Set: nits Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/matchers_minified_test.dart ('k') | test/mirror_matchers_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/matchers_unminified_test.dart
diff --git a/test/matchers_unminified_test.dart b/test/matchers_unminified_test.dart
index 6947884dcefd8f74be40ccc4a520df781b22b8e8..b9ea5353019e94e6177a17a92da612c2eae881e7 100644
--- a/test/matchers_unminified_test.dart
+++ b/test/matchers_unminified_test.dart
@@ -20,82 +20,82 @@ void main() {
group('Core matchers', () {
test('throwsFormatException', () {
- shouldPass(() { throw new FormatException(''); },
- throwsFormatException);
- shouldFail(() { throw new Exception(); },
- throwsFormatException,
- matches(
- r"Expected: throws FormatException +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
-
+ shouldPass(() {
+ throw new FormatException('');
+ }, throwsFormatException);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsFormatException, matches(r"Expected: throws FormatException +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsArgumentError', () {
- shouldPass(() { throw new ArgumentError(''); },
- throwsArgumentError);
- shouldFail(() { throw new Exception(); },
- throwsArgumentError,
- matches(
- r"Expected: throws ArgumentError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldPass(() {
+ throw new ArgumentError('');
+ }, throwsArgumentError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsArgumentError, matches(r"Expected: throws ArgumentError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsRangeError', () {
- shouldPass(() { throw new RangeError(0); },
- throwsRangeError);
- shouldFail(() { throw new Exception(); },
- throwsRangeError,
- matches(
- r"Expected: throws RangeError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldPass(() {
+ throw new RangeError(0);
+ }, throwsRangeError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsRangeError, matches(r"Expected: throws RangeError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsNoSuchMethodError', () {
shouldPass(() {
- throw new NoSuchMethodError(null, const Symbol(''), null, null);
+ throw new NoSuchMethodError(null, const Symbol(''), null, null);
}, throwsNoSuchMethodError);
- shouldFail(() { throw new Exception(); },
- throwsNoSuchMethodError,
- matches(
- r"Expected: throws NoSuchMethodError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldFail(() {
+ throw new Exception();
+ }, throwsNoSuchMethodError, matches(
+ r"Expected: throws NoSuchMethodError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsUnimplementedError', () {
- shouldPass(() { throw new UnimplementedError(''); },
- throwsUnimplementedError);
- shouldFail(() { throw new Exception(); },
- throwsUnimplementedError,
- matches(
- r"Expected: throws UnimplementedError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldPass(() {
+ throw new UnimplementedError('');
+ }, throwsUnimplementedError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsUnimplementedError, matches(
+ r"Expected: throws UnimplementedError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsUnsupportedError', () {
- shouldPass(() { throw new UnsupportedError(''); },
- throwsUnsupportedError);
- shouldFail(() { throw new Exception(); },
- throwsUnsupportedError,
- matches(
- r"Expected: throws UnsupportedError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldPass(() {
+ throw new UnsupportedError('');
+ }, throwsUnsupportedError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsUnsupportedError, matches(r"Expected: throws UnsupportedError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
test('throwsStateError', () {
- shouldPass(() { throw new StateError(''); },
- throwsStateError);
- shouldFail(() { throw new Exception(); },
- throwsStateError,
- matches(
- r"Expected: throws StateError +"
- r"Actual: <Closure(: \(\) => dynamic)?> +"
- r"Which: threw \?:<Exception>"));
+ shouldPass(() {
+ throw new StateError('');
+ }, throwsStateError);
+ shouldFail(() {
+ throw new Exception();
+ }, throwsStateError, matches(r"Expected: throws StateError +"
+ r"Actual: <Closure(: \(\) => dynamic)?> +"
+ r"Which: threw \?:<Exception>"));
});
});
@@ -116,12 +116,10 @@ void main() {
"Actual: SimpleIterable:[]");
});
-
test('contains', () {
var d = new SimpleIterable(3);
shouldPass(d, contains(2));
- shouldFail(d, contains(5),
- "Expected: contains <5> "
+ shouldFail(d, contains(5), "Expected: contains <5> "
"Actual: SimpleIterable:[3, 2, 1]");
});
});
« no previous file with comments | « test/matchers_minified_test.dart ('k') | test/mirror_matchers_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698