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

Side by Side Diff: lib/src/map_matchers.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 unified diff | Download patch
« no previous file with comments | « lib/src/iterable_matchers.dart ('k') | lib/src/numeric_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 library matcher.map_matchers; 5 library matcher.map_matchers;
6 6
7 import 'interfaces.dart'; 7 import 'interfaces.dart';
8 import 'util.dart'; 8 import 'util.dart';
9 9
10 /// Returns a matcher which matches maps containing the given [value]. 10 /// Returns a matcher which matches maps containing the given [value].
(...skipping 14 matching lines...) Expand all
25 Matcher containsPair(key, value) => 25 Matcher containsPair(key, value) =>
26 new _ContainsMapping(key, wrapMatcher(value)); 26 new _ContainsMapping(key, wrapMatcher(value));
27 27
28 class _ContainsMapping extends Matcher { 28 class _ContainsMapping extends Matcher {
29 final _key; 29 final _key;
30 final Matcher _valueMatcher; 30 final Matcher _valueMatcher;
31 31
32 const _ContainsMapping(this._key, Matcher this._valueMatcher); 32 const _ContainsMapping(this._key, Matcher this._valueMatcher);
33 33
34 bool matches(item, Map matchState) => 34 bool matches(item, Map matchState) =>
35 item.containsKey(_key) && 35 item.containsKey(_key) && _valueMatcher.matches(item[_key], matchState);
36 _valueMatcher.matches(item[_key], matchState);
37 36
38 Description describe(Description description) { 37 Description describe(Description description) {
39 return description.add('contains pair ').addDescriptionOf(_key). 38 return description
40 add(' => ').addDescriptionOf(_valueMatcher); 39 .add('contains pair ')
40 .addDescriptionOf(_key)
41 .add(' => ')
42 .addDescriptionOf(_valueMatcher);
41 } 43 }
42 44
43 Description describeMismatch(item, Description mismatchDescription, 45 Description describeMismatch(
44 Map matchState, bool verbose) { 46 item, Description mismatchDescription, Map matchState, bool verbose) {
45 if (!item.containsKey(_key)) { 47 if (!item.containsKey(_key)) {
46 return mismatchDescription.add(" doesn't contain key ") 48 return mismatchDescription
49 .add(" doesn't contain key ")
47 .addDescriptionOf(_key); 50 .addDescriptionOf(_key);
48 } else { 51 } else {
49 mismatchDescription.add(' contains key ').addDescriptionOf(_key). 52 mismatchDescription
50 add(' but with value '); 53 .add(' contains key ')
51 _valueMatcher.describeMismatch(item[_key], mismatchDescription, 54 .addDescriptionOf(_key)
52 matchState, verbose); 55 .add(' but with value ');
56 _valueMatcher.describeMismatch(
57 item[_key], mismatchDescription, matchState, verbose);
53 return mismatchDescription; 58 return mismatchDescription;
54 } 59 }
55 } 60 }
56 } 61 }
OLDNEW
« no previous file with comments | « lib/src/iterable_matchers.dart ('k') | lib/src/numeric_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698