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

Unified Diff: pkg/unittest/lib/mock.dart

Issue 18442002: Add missing newline after Actual value in fail message. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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 | « pkg/unittest/lib/matcher.dart ('k') | pkg/unittest/lib/src/basematcher.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/mock.dart
===================================================================
--- pkg/unittest/lib/mock.dart (revision 24669)
+++ pkg/unittest/lib/mock.dart (working copy)
@@ -995,7 +995,7 @@
* [_TimesMatcher]s are used to make assertions about the number of
* times a method was called.
*/
-class _TimesMatcher extends BaseMatcher {
+class _TimesMatcher extends Matcher {
final int min, max;
const _TimesMatcher(this.min, [this.max = -1]);
@@ -1053,7 +1053,7 @@
* [_ResultMatcher]s are used to make assertions about the results
* of method calls. These can be used as optional parameters to [getLogs].
*/
-class _ResultMatcher extends BaseMatcher {
+class _ResultMatcher extends Matcher {
final Action action;
final Matcher value;
@@ -1132,7 +1132,7 @@
* We could make this class use _ResultMatcher but it doesn't buy that
* match and adds some perf hit, so there is some duplication here.
*/
-class _ResultSetMatcher extends BaseMatcher {
+class _ResultSetMatcher extends Matcher {
final Action action;
final Matcher value;
final _Frequency frequency; // ALL, SOME, or NONE.
« no previous file with comments | « pkg/unittest/lib/matcher.dart ('k') | pkg/unittest/lib/src/basematcher.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698