Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012, 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] and Ladislav Thon's [dart-matchers] | 6 * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/). |
|
gram
2013/03/05 18:55:33
I think we want to keep the reference to dart-matc
kevmoo-old
2013/03/05 20:21:08
dart-matchers is no longer alive, it appears. Link
kevmoo-old
2013/03/07 20:35:30
Done.
| |
| 7 * library. | |
| 8 * | |
| 9 * See [Hamcrest] http://en.wikipedia.org/wiki/Hamcrest | |
| 10 * [Hamcrest] http://code.google.com/p/hamcrest/ | |
| 11 * [dart-matchers] https://github.com/Ladicek/dart-matchers | |
| 12 */ | 7 */ |
| 13 library matcher; | 8 library matcher; |
| 14 | 9 |
| 15 import 'dart:async'; | 10 import 'dart:async'; |
| 16 | 11 |
| 17 part 'src/basematcher.dart'; | 12 part 'src/basematcher.dart'; |
| 18 part 'src/collection_matchers.dart'; | 13 part 'src/collection_matchers.dart'; |
| 19 part 'src/core_matchers.dart'; | 14 part 'src/core_matchers.dart'; |
| 20 part 'src/description.dart'; | 15 part 'src/description.dart'; |
| 21 part 'src/expect.dart'; | 16 part 'src/expect.dart'; |
| 22 part 'src/future_matchers.dart'; | 17 part 'src/future_matchers.dart'; |
| 23 part 'src/interfaces.dart'; | 18 part 'src/interfaces.dart'; |
| 24 part 'src/map_matchers.dart'; | 19 part 'src/map_matchers.dart'; |
| 25 part 'src/numeric_matchers.dart'; | 20 part 'src/numeric_matchers.dart'; |
| 26 part 'src/operator_matchers.dart'; | 21 part 'src/operator_matchers.dart'; |
| 27 part 'src/string_matchers.dart'; | 22 part 'src/string_matchers.dart'; |
| OLD | NEW |