| Index: test/all_tests.dart
|
| diff --git a/test/all_tests.dart b/test/all_tests.dart
|
| index 67e5de6f592af126046ae44aa0ebf46a1d342cc5..8e5807b41066f1b810bef40f93ddc8e509bade08 100755
|
| --- a/test/all_tests.dart
|
| +++ b/test/all_tests.dart
|
| @@ -5,14 +5,16 @@
|
|
|
| library protobuf_lib_all_tests;
|
|
|
| -import 'codec_test.dart' as ct;
|
| -import 'coded_buffer_reader_test.dart' as cbrt;
|
| -import 'json_test.dart' as jt;
|
| -import 'pb_list_test.dart' as plt;
|
| +import 'codec_test.dart' as codec;
|
| +import 'coded_buffer_reader_test.dart' as reader;
|
| +import 'json_test.dart' as json;
|
| +import 'map_mixin_test.dart' as map_mixin;
|
| +import 'pb_list_test.dart' as pb_list;
|
|
|
| void main() {
|
| - ct.main();
|
| - cbrt.main();
|
| - jt.main();
|
| - plt.main();
|
| + codec.main();
|
| + reader.main();
|
| + json.main();
|
| + map_mixin.main();
|
| + pb_list.main();
|
| }
|
|
|