| OLD | NEW |
| 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; |
| 6 |
| 5 /** | 7 /** |
| 6 * Returns a matcher which matches maps containing the given [value]. | 8 * Returns a matcher which matches maps containing the given [value]. |
| 7 */ | 9 */ |
| 8 | |
| 9 part of matcher; | |
| 10 | |
| 11 Matcher containsValue(value) => new _ContainsValue(value); | 10 Matcher containsValue(value) => new _ContainsValue(value); |
| 12 | 11 |
| 13 class _ContainsValue extends BaseMatcher { | 12 class _ContainsValue extends BaseMatcher { |
| 14 final _value; | 13 final _value; |
| 15 | 14 |
| 16 const _ContainsValue(this._value); | 15 const _ContainsValue(this._value); |
| 17 | 16 |
| 18 bool matches(item, MatchState matchState) => item.containsValue(_value); | 17 bool matches(item, MatchState matchState) => item.containsValue(_value); |
| 19 Description describe(Description description) => | 18 Description describe(Description description) => |
| 20 description.add('contains value ').addDescriptionOf(_value); | 19 description.add('contains value ').addDescriptionOf(_value); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 49 add(" doesn't contain key ").addDescriptionOf(_key); | 48 add(" doesn't contain key ").addDescriptionOf(_key); |
| 50 } else { | 49 } else { |
| 51 mismatchDescription.add(' contains key ').addDescriptionOf(_key). | 50 mismatchDescription.add(' contains key ').addDescriptionOf(_key). |
| 52 add(' but with value '); | 51 add(' but with value '); |
| 53 _valueMatcher.describeMismatch(item[_key], mismatchDescription, | 52 _valueMatcher.describeMismatch(item[_key], mismatchDescription, |
| 54 matchState, verbose); | 53 matchState, verbose); |
| 55 return mismatchDescription; | 54 return mismatchDescription; |
| 56 } | 55 } |
| 57 } | 56 } |
| 58 } | 57 } |
| OLD | NEW |