| 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 library matcher.map_matchers; | 5 library matcher.map_matchers; |
| 6 | 6 |
| 7 import 'expect.dart'; | |
| 8 import 'interfaces.dart'; | 7 import 'interfaces.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]. |
| 11 Matcher containsValue(value) => new _ContainsValue(value); | 11 Matcher containsValue(value) => new _ContainsValue(value); |
| 12 | 12 |
| 13 class _ContainsValue extends Matcher { | 13 class _ContainsValue extends Matcher { |
| 14 final _value; | 14 final _value; |
| 15 | 15 |
| 16 const _ContainsValue(this._value); | 16 const _ContainsValue(this._value); |
| 17 | 17 |
| 18 bool matches(item, Map matchState) => item.containsValue(_value); | 18 bool matches(item, Map matchState) => item.containsValue(_value); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 47 .addDescriptionOf(_key); | 47 .addDescriptionOf(_key); |
| 48 } else { | 48 } else { |
| 49 mismatchDescription.add(' contains key ').addDescriptionOf(_key). | 49 mismatchDescription.add(' contains key ').addDescriptionOf(_key). |
| 50 add(' but with value '); | 50 add(' but with value '); |
| 51 _valueMatcher.describeMismatch(item[_key], mismatchDescription, | 51 _valueMatcher.describeMismatch(item[_key], mismatchDescription, |
| 52 matchState, verbose); | 52 matchState, verbose); |
| 53 return mismatchDescription; | 53 return mismatchDescription; |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 } | 56 } |
| OLD | NEW |