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

Unified Diff: pkg/analysis_server/test/test_runner.dart

Issue 209003005: utility for manually running all analysis_server tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/test_runner.dart
diff --git a/pkg/analysis_server/test/test_runner.dart b/pkg/analysis_server/test/test_runner.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4cf10dc19e080d699af684f700b2b02922cfa5bd
--- /dev/null
+++ b/pkg/analysis_server/test/test_runner.dart
@@ -0,0 +1,16 @@
+// Run all tests
Brian Wilkerson 2014/03/22 14:37:20 Missing standard copyright (and IMO the comment is
danrubel 2014/03/25 19:03:58 Done.
+import 'analysis_server_test.dart' as analysis_server_test;
+import 'channel_test.dart' as channel_test;
+import 'domain_context_test.dart' as domain_context_test;
+import 'domain_server_test.dart' as domain_server_test;
+import 'protocol_test.dart' as protocol_test;
+
+// Utility for manually running all tests
Brian Wilkerson 2014/03/22 14:37:20 "//" --> "///"
danrubel 2014/03/25 19:03:58 Done.
+main() {
+ print("Running all Analysi Server cmdline tests...");
Brian Wilkerson 2014/03/22 14:37:20 "Analysi" --> "Analysis" Also, rather than 'print
danrubel 2014/03/25 19:03:58 Good idea. Done.
+ analysis_server_test.main(null);
+ channel_test.main(null);
+ domain_context_test.main(null);
+ domain_server_test.main(null);
+ protocol_test.main(null);
+}
« pkg/analysis_server/test/channel_test.dart ('K') | « pkg/analysis_server/test/protocol_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698