| OLD | NEW |
| 1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
| 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
| 4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 library protoc_plugin_all_tests; | 6 library protoc_plugin_all_tests; |
| 7 | 7 |
| 8 import 'client_generator_test.dart' as cgt; |
| 8 import 'enum_generator_test.dart' as egt; | 9 import 'enum_generator_test.dart' as egt; |
| 10 import 'file_generator_test.dart' as fgt; |
| 9 import 'generated_message_test.dart' as gmt; | 11 import 'generated_message_test.dart' as gmt; |
| 12 import 'hash_code_test.dart' as hct; |
| 10 import 'indenting_writer_test.dart' as iwt; | 13 import 'indenting_writer_test.dart' as iwt; |
| 11 import 'json_test.dart' as jt; | 14 import 'json_test.dart' as jt; |
| 12 import 'map_test.dart' as map_test; | 15 import 'map_test.dart' as map_test; |
| 13 import 'message_generator_test.dart' as mgt; | 16 import 'message_generator_test.dart' as mgt; |
| 14 import 'file_generator_test.dart' as fgt; | |
| 15 import 'message_test.dart' as mt; | 17 import 'message_test.dart' as mt; |
| 16 import 'protoc_options_test.dart' as pot; | 18 import 'protoc_options_test.dart' as pot; |
| 19 import 'reserved_names_test.dart' as rnt; |
| 20 import 'service_test.dart' as st; |
| 21 import 'service_generator_test.dart' as sgt; |
| 17 import 'unknown_field_set_test.dart' as ufst; | 22 import 'unknown_field_set_test.dart' as ufst; |
| 18 import 'validate_fail_test.dart' as vft; | 23 import 'validate_fail_test.dart' as vft; |
| 19 import 'wire_format_test.dart' as wft; | 24 import 'wire_format_test.dart' as wft; |
| 20 import 'reserved_names_test.dart' as rnt; | |
| 21 import 'hash_code_test.dart' as hct; | |
| 22 import 'package:unittest/compact_vm_config.dart'; | 25 import 'package:unittest/compact_vm_config.dart'; |
| 23 | 26 |
| 24 void main() { | 27 void main() { |
| 25 useCompactVMConfiguration(); | 28 useCompactVMConfiguration(); |
| 29 cgt.main(); |
| 26 egt.main(); | 30 egt.main(); |
| 31 fgt.main(); |
| 27 gmt.main(); | 32 gmt.main(); |
| 33 hct.main(); |
| 28 iwt.main(); | 34 iwt.main(); |
| 29 jt.main(); | 35 jt.main(); |
| 30 map_test.main(); | 36 map_test.main(); |
| 31 mgt.main(); | 37 mgt.main(); |
| 32 fgt.main(); | |
| 33 mt.main(); | 38 mt.main(); |
| 34 pot.main(); | 39 pot.main(); |
| 40 rnt.main(); |
| 41 st.main(); |
| 42 sgt.main(); |
| 35 ufst.main(); | 43 ufst.main(); |
| 36 vft.main(); | 44 vft.main(); |
| 37 wft.main(); | 45 wft.main(); |
| 38 rnt.main(); | |
| 39 hct.main(); | |
| 40 } | 46 } |
| OLD | NEW |