| Index: test/all_tests.dart
 | 
| diff --git a/test/all_tests.dart b/test/all_tests.dart
 | 
| index 802da605b5ac1c76996e5b846873f6356f387745..3c951ceba15d04153a2a1118ca36aa381e4500b6 100755
 | 
| --- a/test/all_tests.dart
 | 
| +++ b/test/all_tests.dart
 | 
| @@ -5,36 +5,40 @@
 | 
|  
 | 
|  library protoc_plugin_all_tests;
 | 
|  
 | 
| +import 'client_generator_test.dart' as cgt;
 | 
|  import 'enum_generator_test.dart' as egt;
 | 
| +import 'file_generator_test.dart' as fgt;
 | 
|  import 'generated_message_test.dart' as gmt;
 | 
| +import 'hash_code_test.dart' as hct;
 | 
|  import 'indenting_writer_test.dart' as iwt;
 | 
|  import 'json_test.dart' as jt;
 | 
|  import 'map_test.dart' as map_test;
 | 
|  import 'message_generator_test.dart' as mgt;
 | 
| -import 'file_generator_test.dart' as fgt;
 | 
|  import 'message_test.dart' as mt;
 | 
|  import 'protoc_options_test.dart' as pot;
 | 
| +import 'reserved_names_test.dart' as rnt;
 | 
| +import 'service_generator_test.dart' as sgt;
 | 
|  import 'unknown_field_set_test.dart' as ufst;
 | 
|  import 'validate_fail_test.dart' as vft;
 | 
|  import 'wire_format_test.dart' as wft;
 | 
| -import 'reserved_names_test.dart' as rnt;
 | 
| -import 'hash_code_test.dart' as hct;
 | 
|  import 'package:unittest/compact_vm_config.dart';
 | 
|  
 | 
|  void main() {
 | 
|    useCompactVMConfiguration();
 | 
| +  cgt.main();
 | 
|    egt.main();
 | 
| +  fgt.main();
 | 
|    gmt.main();
 | 
| +  hct.main();
 | 
|    iwt.main();
 | 
|    jt.main();
 | 
|    map_test.main();
 | 
|    mgt.main();
 | 
| -  fgt.main();
 | 
|    mt.main();
 | 
|    pot.main();
 | 
| +  rnt.main();
 | 
| +  sgt.main();
 | 
|    ufst.main();
 | 
|    vft.main();
 | 
|    wft.main();
 | 
| -  rnt.main();
 | 
| -  hct.main();
 | 
|  }
 | 
| 
 |