Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: pkg/matcher/lib/matcher.dart

Issue 208823005: pkg/matcher (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nit Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/matcher/LICENSE ('k') | pkg/matcher/lib/mirror_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/matcher/lib/matcher.dart
diff --git a/pkg/unittest/lib/matcher.dart b/pkg/matcher/lib/matcher.dart
similarity index 58%
copy from pkg/unittest/lib/matcher.dart
copy to pkg/matcher/lib/matcher.dart
index f2079938c35eb254ceffd2274694fd5d62598912..85694efe9517cc9279e38df7fa73ec3ee63828e7 100644
--- a/pkg/unittest/lib/matcher.dart
+++ b/pkg/matcher/lib/matcher.dart
@@ -1,36 +1,31 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+
/**
- * Support for specifying test expectations,
- * such as for unit tests.
- *
- * This library is included in the
- * [unittest package on pub.dartlang.org]
- * (http://pub.dartlang.org/packages/unittest).
- * Import this library into your Dart code with:
- *
- * import 'package:unittest/matcher.dart';
+ * Support for specifying test expectations, such as for unit tests.
*
* The matcher library provides a third-generation assertion mechanism, drawing
* inspiration from [Hamcrest](http://code.google.com/p/hamcrest/).
+ *
* For more information, see
* [Unit Testing with Dart]
* (http://www.dartlang.org/articles/dart-unit-tests/).
*/
-library unittest.matcher;
+library matcher;
import 'dart:async';
-import 'src/pretty_print.dart';
-import 'src/utils.dart';
+import 'src/description.dart';
+import 'src/interfaces.dart';
+
+export 'src/description.dart';
+export 'src/interfaces.dart';
-part 'src/iterable_matchers.dart';
part 'src/core_matchers.dart';
-part 'src/description.dart';
part 'src/expect.dart';
part 'src/future_matchers.dart';
-part 'src/interfaces.dart';
+part 'src/iterable_matchers.dart';
part 'src/map_matchers.dart';
part 'src/numeric_matchers.dart';
part 'src/operator_matchers.dart';
« no previous file with comments | « pkg/matcher/LICENSE ('k') | pkg/matcher/lib/mirror_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698