Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |