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

Side by Side Diff: pkg/unittest/collection_matchers.dart

Issue 11027072: Abstract is now required on abstract classes so adding that. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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 | « no previous file | pkg/unittest/core_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 /** 5 /**
6 * Returns a matcher which matches [Collection]s in which all elements 6 * Returns a matcher which matches [Collection]s in which all elements
7 * match the given [matcher]. 7 * match the given [matcher].
8 */ 8 */
9 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher)); 9 Matcher everyElement(matcher) => new _EveryElement(wrapMatcher(matcher));
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 176
177 Description describeMismatch(item, Description mismatchDescription, 177 Description describeMismatch(item, Description mismatchDescription,
178 MatchState matchState, bool verbose) => 178 MatchState matchState, bool verbose) =>
179 mismatchDescription.add(_test(item)); 179 mismatchDescription.add(_test(item));
180 } 180 }
181 181
182 /** 182 /**
183 * Collection matchers match against [Collection]s. We add this intermediate 183 * Collection matchers match against [Collection]s. We add this intermediate
184 * class to give better mismatch error messages than the base Matcher class. 184 * class to give better mismatch error messages than the base Matcher class.
185 */ 185 */
186 /* abstract */ class _CollectionMatcher extends BaseMatcher { 186 abstract class _CollectionMatcher extends BaseMatcher {
187 const _CollectionMatcher(); 187 const _CollectionMatcher();
188 Description describeMismatch(item, Description mismatchDescription, 188 Description describeMismatch(item, Description mismatchDescription,
189 MatchState matchState, bool verbose) { 189 MatchState matchState, bool verbose) {
190 if (item is !Collection) { 190 if (item is !Collection) {
191 return mismatchDescription. 191 return mismatchDescription.
192 addDescriptionOf(item). 192 addDescriptionOf(item).
193 add(' not a collection'); 193 add(' not a collection');
194 } else { 194 } else {
195 return super.describeMismatch(item, mismatchDescription, matchState, 195 return super.describeMismatch(item, mismatchDescription, matchState,
196 verbose); 196 verbose);
197 } 197 }
198 } 198 }
199 } 199 }
OLDNEW
« no previous file with comments | « no previous file | pkg/unittest/core_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698