Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: test/all_tests.dart

Issue 1196773004: changes for 0.3.9 (Closed) Base URL: https://github.com/dart-lang/dart-protobuf.git@master
Patch Set: add mixins_meta, move PbMapMixin to separate library Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« lib/mixins_meta.dart ('K') | « pubspec.yaml ('k') | test/map_mixin_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698