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

Unified Diff: pkg/analyzer/test/source/test_all.dart

Issue 422973002: Move PackageMapUriResolver into analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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/analyzer/test/source/package_map_resolver_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/source/test_all.dart
diff --git a/pkg/analysis_services/test/test_all.dart b/pkg/analyzer/test/source/test_all.dart
similarity index 61%
copy from pkg/analysis_services/test/test_all.dart
copy to pkg/analyzer/test/source/test_all.dart
index 23de4a61088814c1cb509899ef767725872580c3..b9a145f5554f7830ea1ed46a20f45da446439a7a 100644
--- a/pkg/analysis_services/test/test_all.dart
+++ b/pkg/analyzer/test/source/test_all.dart
@@ -2,16 +2,17 @@
// 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.
+library test.source;
+
import 'package:unittest/unittest.dart';
-import 'correction/test_all.dart' as correction_all;
-import 'index/test_all.dart' as index_all;
-import 'search/test_all.dart' as search_all;
+import 'package_map_resolver_test.dart' as package_map_resolver_test;
+
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- correction_all.main();
- index_all.main();
- search_all.main();
-}
+ group('source', () {
+ package_map_resolver_test.main();
+ });
+}
« no previous file with comments | « pkg/analyzer/test/source/package_map_resolver_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698