| 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 test_common; | 5 library test_common; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import 'package:unittest/unittest.dart'; | 9 import 'package:matcher/matcher.dart'; |
| 10 | 10 |
| 11 class Widget { | 11 class Widget { |
| 12 int price; | 12 int price; |
| 13 } | 13 } |
| 14 | 14 |
| 15 class HasPrice extends CustomMatcher { | 15 class HasPrice extends CustomMatcher { |
| 16 HasPrice(matcher) : | 16 HasPrice(matcher) : |
| 17 super("Widget with a price that is", "price", matcher); | 17 super("Widget with a price that is", "price", matcher); |
| 18 featureValueOf(actual) => actual.price; | 18 featureValueOf(actual) => actual.price; |
| 19 } | 19 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 50 _count--; | 50 _count--; |
| 51 return true; | 51 return true; |
| 52 } | 52 } |
| 53 _current = null; | 53 _current = null; |
| 54 return false; | 54 return false; |
| 55 } | 55 } |
| 56 | 56 |
| 57 get current => _current; | 57 get current => _current; |
| 58 } | 58 } |
| 59 | 59 |
| OLD | NEW |