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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // 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.
2 import 'analysis_server_test.dart' as analysis_server_test;
3 import 'channel_test.dart' as channel_test;
4 import 'domain_context_test.dart' as domain_context_test;
5 import 'domain_server_test.dart' as domain_server_test;
6 import 'protocol_test.dart' as protocol_test;
7
8 // Utility for manually running all tests
Brian Wilkerson 2014/03/22 14:37:20 "//" --> "///"
danrubel 2014/03/25 19:03:58 Done.
9 main() {
10 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.
11 analysis_server_test.main(null);
12 channel_test.main(null);
13 domain_context_test.main(null);
14 domain_server_test.main(null);
15 protocol_test.main(null);
16 }
OLDNEW
« 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