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

Unified 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 side-by-side diff with in-line comments
Download patch
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();
}
« 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