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

Unified Diff: pkg/analysis_server/test/services/completion/dart/test_all.dart

Issue 1467023002: step toward new completion API (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comments and merge Created 5 years, 1 month 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_server/test/services/completion/dart/test_all.dart
diff --git a/pkg/analysis_server/test/integration/completion/test_all.dart b/pkg/analysis_server/test/services/completion/dart/test_all.dart
similarity index 54%
copy from pkg/analysis_server/test/integration/completion/test_all.dart
copy to pkg/analysis_server/test/services/completion/dart/test_all.dart
index aae07f3ecd621c993bf21affa45f131d1e81bca9..a4c0e61a3e73f64ed2f27bcc059dfa7a6da9c25b 100644
--- a/pkg/analysis_server/test/integration/completion/test_all.dart
+++ b/pkg/analysis_server/test/services/completion/dart/test_all.dart
@@ -2,19 +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.integration.completion.all;
+library test.services.completion.dart;
import 'package:unittest/unittest.dart';
+import 'inherited_contributor_test.dart' as inherited_contributor_test;
-import '../../utils.dart';
-import 'get_suggestions_test.dart' as get_suggestions_test;
+import '../../../utils.dart';
-/**
- * Utility for manually running all integration tests.
- */
+/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('completion', () {
- get_suggestions_test.main();
+ group('dart/completion', () {
+ inherited_contributor_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698