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

Unified Diff: lib/unittest.dart

Issue 955543002: Move a bunch of src/ files into subdirectories. (Closed) Base URL: git@github.com:dart-lang/unittest@master
Patch Set: Fix library tags Created 5 years, 10 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 | « lib/src/vm_listener.dart ('k') | test/console_reporter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/unittest.dart
diff --git a/lib/unittest.dart b/lib/unittest.dart
index 0e4be92da407534374dc336240fb9613cf27951b..e4f36b590f395df1febd7ea447926c42dfe79495 100644
--- a/lib/unittest.dart
+++ b/lib/unittest.dart
@@ -8,50 +8,24 @@ import 'dart:async';
import 'package:path/path.dart' as p;
-import 'src/configuration.dart';
-import 'src/declarer.dart';
-import 'src/console_reporter.dart';
-import 'src/invoker.dart';
-import 'src/suite.dart';
-import 'src/test_case.dart';
-
-export 'package:matcher/matcher.dart'
- hide
- completes,
- completion,
- configureExpectFailureHandler,
- DefaultFailureHandler,
- ErrorFormatter,
- expect,
- fail,
- FailureHandler,
- getOrCreateExpectFailureHandler,
- prints,
- TestFailure,
- Throws,
- throws,
- throwsA,
- throwsArgumentError,
- throwsConcurrentModificationError,
- throwsCyclicInitializationError,
- throwsException,
- throwsFormatException,
- throwsNoSuchMethodError,
- throwsNullThrownError,
- throwsRangeError,
- throwsStateError,
- throwsUnimplementedError,
- throwsUnsupportedError;
-
-export 'src/configuration.dart';
-export 'src/expect.dart';
-export 'src/expect_async.dart';
-export 'src/future_matchers.dart';
-export 'src/prints_matcher.dart';
-export 'src/simple_configuration.dart';
-export 'src/test_case.dart';
-export 'src/throws_matcher.dart';
-export 'src/throws_matchers.dart';
+import 'src/backend/declarer.dart';
+import 'src/backend/invoker.dart';
+import 'src/backend/suite.dart';
+import 'src/deprecated/configuration.dart';
+import 'src/deprecated/test_case.dart';
+import 'src/runner/console_reporter.dart';
+
+export 'package:matcher/matcher.dart';
+
+export 'src/deprecated/configuration.dart';
+export 'src/deprecated/simple_configuration.dart';
+export 'src/deprecated/test_case.dart';
+export 'src/frontend/expect.dart';
+export 'src/frontend/expect_async.dart';
+export 'src/frontend/future_matchers.dart';
+export 'src/frontend/prints_matcher.dart';
+export 'src/frontend/throws_matcher.dart';
+export 'src/frontend/throws_matchers.dart';
/// The global declarer.
///
« no previous file with comments | « lib/src/vm_listener.dart ('k') | test/console_reporter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698