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

Unified Diff: pkg/analysis_services/test/completion/test_all.dart

Issue 422423003: incremental step moving completion into services and adding tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
Index: pkg/analysis_services/test/completion/test_all.dart
diff --git a/pkg/analyzer/test/source/test_all.dart b/pkg/analysis_services/test/completion/test_all.dart
similarity index 68%
copy from pkg/analyzer/test/source/test_all.dart
copy to pkg/analysis_services/test/completion/test_all.dart
index b9a145f5554f7830ea1ed46a20f45da446439a7a..c05b3b61b2f6468a344214a5065d28af6a86a873 100644
--- a/pkg/analyzer/test/source/test_all.dart
+++ b/pkg/analysis_services/test/completion/test_all.dart
@@ -2,17 +2,16 @@
// 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;
+library test.services.completion;
import 'package:unittest/unittest.dart';
-import 'package_map_resolver_test.dart' as package_map_resolver_test;
-
+import 'top_level_computer_test.dart' as toplevel_test;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- group('source', () {
- package_map_resolver_test.main();
+ group('completion', () {
+ toplevel_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698