| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 * The matcher library provides a 3rd generation assertion mechanism, drawing | 5 * The matcher library provides a 3rd generation assertion mechanism, drawing |
| 6 * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/). | 6 * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/). |
| 7 * |
| 8 * ## Installing ## |
| 9 * |
| 10 * Use [pub][] to install this package. Add the following to your `pubspec.yaml` |
| 11 * file. |
| 12 * |
| 13 * dependencies: |
| 14 * matcher: any |
| 15 * |
| 16 * And then run `pub install`. |
| 17 * |
| 18 * [pub]: http://pub.dartlang.org |
| 7 */ | 19 */ |
| 8 library matcher; | 20 library matcher; |
| 9 | 21 |
| 10 import 'dart:async'; | 22 import 'dart:async'; |
| 11 | 23 |
| 12 part 'src/basematcher.dart'; | 24 part 'src/basematcher.dart'; |
| 13 part 'src/iterable_matchers.dart'; | 25 part 'src/iterable_matchers.dart'; |
| 14 part 'src/core_matchers.dart'; | 26 part 'src/core_matchers.dart'; |
| 15 part 'src/description.dart'; | 27 part 'src/description.dart'; |
| 16 part 'src/expect.dart'; | 28 part 'src/expect.dart'; |
| 17 part 'src/future_matchers.dart'; | 29 part 'src/future_matchers.dart'; |
| 18 part 'src/interfaces.dart'; | 30 part 'src/interfaces.dart'; |
| 19 part 'src/map_matchers.dart'; | 31 part 'src/map_matchers.dart'; |
| 20 part 'src/numeric_matchers.dart'; | 32 part 'src/numeric_matchers.dart'; |
| 21 part 'src/operator_matchers.dart'; | 33 part 'src/operator_matchers.dart'; |
| 22 part 'src/string_matchers.dart'; | 34 part 'src/string_matchers.dart'; |
| OLD | NEW |