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

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

Issue 465513002: Split analysis_domain_int_test.dart into several test files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « pkg/analysis_server/test/integration/integration_tests.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ce0dc3ef388900a1a2277846b17688e41e3a930f..7a53cec14febf5fd095ddf5fc17efa35c5e26b54 100644
--- a/pkg/analysis_server/test/integration/test_all.dart
+++ b/pkg/analysis_server/test/integration/test_all.dart
@@ -2,10 +2,11 @@
// 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_int_test.dart' as analysis_domain_int_test;
-import 'analysis_error_int_test.dart' as analysis_error_int_test;
+import 'analysis/test_all.dart' as analysis_test_all;
import 'completion_domain_int_test.dart' as completion_domain_int_test;
import 'server_domain_int_test.dart' as server_domain_int_test;
@@ -15,8 +16,7 @@ import 'server_domain_int_test.dart' as server_domain_int_test;
main() {
groupSep = ' | ';
group('analysis_server_integration', () {
- analysis_domain_int_test.main();
- analysis_error_int_test.main();
+ analysis_test_all.main();
completion_domain_int_test.main();
server_domain_int_test.main();
});
« no previous file with comments | « pkg/analysis_server/test/integration/integration_tests.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698