| OLD | NEW |
| 1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
| 2 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2011, 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 protobuf_lib_all_tests; | 6 library protobuf_lib_all_tests; |
| 7 | 7 |
| 8 import 'codec_test.dart' as ct; | 8 import 'codec_test.dart' as codec; |
| 9 import 'coded_buffer_reader_test.dart' as cbrt; | 9 import 'coded_buffer_reader_test.dart' as reader; |
| 10 import 'json_test.dart' as jt; | 10 import 'json_test.dart' as json; |
| 11 import 'pb_list_test.dart' as plt; | 11 import 'map_mixin_test.dart' as map_mixin; |
| 12 import 'pb_list_test.dart' as pb_list; |
| 12 | 13 |
| 13 void main() { | 14 void main() { |
| 14 ct.main(); | 15 codec.main(); |
| 15 cbrt.main(); | 16 reader.main(); |
| 16 jt.main(); | 17 json.main(); |
| 17 plt.main(); | 18 map_mixin.main(); |
| 19 pb_list.main(); |
| 18 } | 20 } |
| OLD | NEW |