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

Side by Side Diff: pkg/unittest/lib/src/iterable_matchers.dart

Issue 99053003: Renaming unittest parts- missed these when giving the libraries proper names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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/unittest/lib/src/interfaces.dart ('k') | pkg/unittest/lib/src/map_matchers.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of matcher; 5 part of unittest.matcher;
6 6
7 /** 7 /**
8 * Returns a matcher which matches [Iterable]s in which all elements 8 * Returns a matcher which matches [Iterable]s in which all elements
9 * match the given [matcher]. 9 * match the given [matcher].
10 */ 10 */
11 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher)); 11 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher));
12 12
13 class _EveryElement extends _IterableMatcher { 13 class _EveryElement extends _IterableMatcher {
14 Matcher _matcher; 14 Matcher _matcher;
15 15
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 return mismatchDescription. 240 return mismatchDescription.
241 add('has '). 241 add('has ').
242 addDescriptionOf(matchState["actual"]). 242 addDescriptionOf(matchState["actual"]).
243 add(' which is not $_description '). 243 add(' which is not $_description ').
244 addDescriptionOf(matchState["expected"]). 244 addDescriptionOf(matchState["expected"]).
245 add(' at index ${matchState["index"]}'); 245 add(' at index ${matchState["index"]}');
246 } 246 }
247 } 247 }
248 } 248 }
249 249
OLDNEW
« no previous file with comments | « pkg/unittest/lib/src/interfaces.dart ('k') | pkg/unittest/lib/src/map_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698