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

Side by Side Diff: test/all_tests.dart

Issue 63173006: Add test for protocol buffer hash code (Closed) Base URL: https://github.com/dart-lang/dart-protoc-plugin.git@master
Patch Set: Addressed review comments Created 7 years, 1 month 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
« no previous file with comments | « pubspec.yaml ('k') | test/hash_code_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env dart 1 #!/usr/bin/env dart
2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2013, 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 protoc_plugin_all_tests; 6 library protoc_plugin_all_tests;
7 7
8 import 'enum_generator_test.dart' as egt; 8 import 'enum_generator_test.dart' as egt;
9 import 'generated_message_test.dart' as gmt; 9 import 'generated_message_test.dart' as gmt;
10 import 'indenting_writer_test.dart' as iwt; 10 import 'indenting_writer_test.dart' as iwt;
11 import 'json_test.dart' as jt; 11 import 'json_test.dart' as jt;
12 import 'message_generator_test.dart' as mgt; 12 import 'message_generator_test.dart' as mgt;
13 import 'file_generator_test.dart' as fgt; 13 import 'file_generator_test.dart' as fgt;
14 import 'message_test.dart' as mt; 14 import 'message_test.dart' as mt;
15 import 'protoc_options_test.dart' as pot; 15 import 'protoc_options_test.dart' as pot;
16 import 'unknown_field_set_test.dart' as ufst; 16 import 'unknown_field_set_test.dart' as ufst;
17 import 'validate_fail_test.dart' as vft; 17 import 'validate_fail_test.dart' as vft;
18 import 'wire_format_test.dart' as wft; 18 import 'wire_format_test.dart' as wft;
19 import 'reserved_names_test.dart' as rnt; 19 import 'reserved_names_test.dart' as rnt;
20 import 'hash_code_test.dart' as hct;
20 21
21 void main() { 22 void main() {
22 egt.main(); 23 egt.main();
23 gmt.main(); 24 gmt.main();
24 iwt.main(); 25 iwt.main();
25 jt.main(); 26 jt.main();
26 mgt.main(); 27 mgt.main();
27 fgt.main(); 28 fgt.main();
28 mt.main(); 29 mt.main();
29 pot.main(); 30 pot.main();
30 ufst.main(); 31 ufst.main();
31 vft.main(); 32 vft.main();
32 wft.main(); 33 wft.main();
33 rnt.main(); 34 rnt.main();
35 hct.main();
34 } 36 }
OLDNEW
« no previous file with comments | « pubspec.yaml ('k') | test/hash_code_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698