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

Side by Side Diff: test/all_tests.dart

Issue 40343003: Default handling of name conflicts when generating classes (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 | « lib/message_generator.dart ('k') | test/generated_message_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 20
20 void main() { 21 void main() {
21 egt.main(); 22 egt.main();
22 gmt.main(); 23 gmt.main();
23 iwt.main(); 24 iwt.main();
24 jt.main(); 25 jt.main();
25 mgt.main(); 26 mgt.main();
26 fgt.main(); 27 fgt.main();
27 mt.main(); 28 mt.main();
28 pot.main(); 29 pot.main();
29 ufst.main(); 30 ufst.main();
30 vft.main(); 31 vft.main();
31 wft.main(); 32 wft.main();
33 rnt.main();
32 } 34 }
OLDNEW
« no previous file with comments | « lib/message_generator.dart ('k') | test/generated_message_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698