Chromium Code Reviews| 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); |
| +} |