| 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 'enum_generator_test.dart' as egt; | 8 import 'enum_generator_test.dart' as egt; |
| 9 import 'generated_message_test.dart' as gmt; | 9 import 'generated_message_test.dart' as gmt; |
| 10 import 'indenting_writer_test.dart' as iwt; | 10 import 'indenting_writer_test.dart' as iwt; |
| 11 import 'json_test.dart' as jt; | 11 import 'json_test.dart' as jt; |
| 12 import 'message_generator_test.dart' as mgt; | 12 import 'message_generator_test.dart' as mgt; |
| 13 import 'file_generator_test.dart' as fgt; | 13 import 'file_generator_test.dart' as fgt; |
| 14 import 'message_test.dart' as mt; | 14 import 'message_test.dart' as mt; |
| 15 import 'protoc_options_test.dart' as pot; | 15 import 'protoc_options_test.dart' as pot; |
| 16 import 'unknown_field_set_test.dart' as ufst; | 16 import 'unknown_field_set_test.dart' as ufst; |
| 17 import 'validate_fail_test.dart' as vft; | 17 import 'validate_fail_test.dart' as vft; |
| 18 import 'wire_format_test.dart' as wft; | 18 import 'wire_format_test.dart' as wft; |
| 19 import 'reserved_names_test.dart' as rnt; | 19 import 'reserved_names_test.dart' as rnt; |
| 20 import 'hash_code_test.dart' as hct; | 20 import 'hash_code_test.dart' as hct; |
| 21 import 'package:unittest/compact_vm_config.dart'; |
| 21 | 22 |
| 22 void main() { | 23 void main() { |
| 24 useCompactVMConfiguration(); |
| 23 egt.main(); | 25 egt.main(); |
| 24 gmt.main(); | 26 gmt.main(); |
| 25 iwt.main(); | 27 iwt.main(); |
| 26 jt.main(); | 28 jt.main(); |
| 27 mgt.main(); | 29 mgt.main(); |
| 28 fgt.main(); | 30 fgt.main(); |
| 29 mt.main(); | 31 mt.main(); |
| 30 pot.main(); | 32 pot.main(); |
| 31 ufst.main(); | 33 ufst.main(); |
| 32 vft.main(); | 34 vft.main(); |
| 33 wft.main(); | 35 wft.main(); |
| 34 rnt.main(); | 36 rnt.main(); |
| 35 hct.main(); | 37 hct.main(); |
| 36 } | 38 } |
| OLD | NEW |