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

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

Issue 1407273004: next step toward completion plugin API (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comments Created 5 years, 2 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_server/test/services/completion/dart/test_all.dart
diff --git a/pkg/analysis_server/test/services/completion/dart/test_all.dart b/pkg/analysis_server/test/services/completion/dart/test_all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ae49c3386c4b80dab60852f68181b84bb502d4cf
--- /dev/null
+++ b/pkg/analysis_server/test/services/completion/dart/test_all.dart
@@ -0,0 +1,20 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// 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.services.completion.dart;
+
+import 'package:unittest/unittest.dart';
+import 'inherited_computer_test.dart' as inherited_contributor_test;
+import 'reference_contributor_test.dart' as reference_contributor_test;
+
+import '../../../utils.dart';
+
+/// Utility for manually running all tests.
+main() {
+ initializeTestEnvironment();
+ group('dart/completion', () {
+ inherited_contributor_test.main();
+ reference_contributor_test.main();
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698