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

Unified Diff: pkg/analysis_server/test/integration/test_all.dart

Issue 423083005: enable code completion integration test stub (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
Index: pkg/analysis_server/test/integration/test_all.dart
diff --git a/pkg/analysis_server/test/integration/test_all.dart b/pkg/analysis_server/test/integration/test_all.dart
index 74d5ee74798944b097a81e0419243bfc34f5f9f7..0246bef2bb6fe69eab06b23e32ec58eefacee0dd 100644
--- a/pkg/analysis_server/test/integration/test_all.dart
+++ b/pkg/analysis_server/test/integration/test_all.dart
@@ -2,12 +2,14 @@
// 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.all;
+
import 'package:unittest/unittest.dart';
-import 'analysis_domain_inttest.dart' as analysis_domain_inttest;
-import 'analysis_error_inttest.dart' as analysis_error_inttest;
-import 'completion_domain_inttest.dart' as completion_domain_inttest;
-import 'server_domain_inttest.dart' as server_domain_inttest;
+//import 'analysis_domain_int_test.dart' as analysis_domain_inttest;
Paul Berry 2014/07/29 15:28:45 Why are the other integration tests being disabled
+//import 'analysis_error_int_test.dart' as analysis_error_inttest;
+import 'completion_domain_int_test.dart' as completion_domain_inttest;
+//import 'server_domain_int_test.dart' as server_domain_inttest;
/**
* Utility for manually running all integration tests.
@@ -15,9 +17,9 @@ import 'server_domain_inttest.dart' as server_domain_inttest;
main() {
groupSep = ' | ';
group('analysis_server_integration', () {
- analysis_domain_inttest.main();
- analysis_error_inttest.main();
+// analysis_domain_inttest.main();
+// analysis_error_inttest.main();
completion_domain_inttest.main();
- server_domain_inttest.main();
+// server_domain_inttest.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698