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

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

Issue 458453003: Split up server_domain_int_test.dart; regularize integration test directories. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file 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/server_domain_int_test.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 7a53cec14febf5fd095ddf5fc17efa35c5e26b54..d9251f0ec4609ddc8feb70cc82f6ed8900bbd693 100644
--- a/pkg/analysis_server/test/integration/test_all.dart
+++ b/pkg/analysis_server/test/integration/test_all.dart
@@ -7,8 +7,9 @@ library test.integration.all;
import 'package:unittest/unittest.dart';
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;
+import 'completion/test_all.dart' as completion_test_all;
+import 'search/test_all.dart' as search_test_all;
+import 'server/test_all.dart' as server_test_all;
/**
* Utility for manually running all integration tests.
@@ -17,7 +18,8 @@ main() {
groupSep = ' | ';
group('analysis_server_integration', () {
analysis_test_all.main();
- completion_domain_int_test.main();
- server_domain_int_test.main();
+ completion_test_all.main();
+ search_test_all.main();
+ server_test_all.main();
});
}
« no previous file with comments | « pkg/analysis_server/test/integration/server_domain_int_test.dart ('k') | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698