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

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

Issue 372763003: Move file_system libraries 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/file_system/resource_uri_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/file_system/test_all.dart
diff --git a/pkg/analysis_services/test/test_all.dart b/pkg/analyzer/test/file_system/test_all.dart
similarity index 51%
copy from pkg/analysis_services/test/test_all.dart
copy to pkg/analyzer/test/file_system/test_all.dart
index fb2208646c7c3754d9f022ef6f8245c3b902cdb2..41307a9b2fa0d56e479daa680b7360e350cc1dff 100644
--- a/pkg/analysis_services/test/test_all.dart
+++ b/pkg/analyzer/test/file_system/test_all.dart
@@ -2,10 +2,19 @@
// 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.file_system;
+
import 'package:unittest/unittest.dart';
+import 'memory_file_system_test.dart' as memory_file_system_test;
+import 'resource_uri_resolver_test.dart' as resource_uri_resolver_test;
+
+
/// Utility for manually running all tests.
main() {
-// group('analysis_services', () {
-// });
+ groupSep = ' | ';
+ group('file_system', () {
+ memory_file_system_test.main();
+ resource_uri_resolver_test.main();
+ });
}
« no previous file with comments | « pkg/analyzer/test/file_system/resource_uri_resolver_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698