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(); |
+ }); |
+} |