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

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

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
Index: pkg/unittest/lib/unittest.dart
===================================================================
--- pkg/unittest/lib/unittest.dart (revision 0)
+++ pkg/unittest/lib/unittest.dart (working copy)
@@ -148,20 +148,10 @@
library unittest;
import 'dart:isolate';
+import 'matcher.dart';
+export 'matcher.dart';
-part 'collection_matchers.dart';
part 'config.dart';
-part 'core_matchers.dart';
-part 'description.dart';
-part 'expect.dart';
-part 'future_matchers.dart';
-part 'interfaces.dart';
-part 'map_matchers.dart';
-part 'matcher.dart';
-part 'mock.dart';
-part 'numeric_matchers.dart';
-part 'operator_matchers.dart';
-part 'string_matchers.dart';
part 'test_case.dart';
/** [Configuration] used by the unittest library. */
@@ -854,6 +844,8 @@
return;
}
_initialized = true;
+ // Hook our async guard into the matcher library.
+ wrapAsync = expectAsync1;
_tests = <TestCase>[];
_testRunner = _nextBatch;

Powered by Google App Engine
This is Rietveld 408576698