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

Side by Side Diff: test/all_tests.dart

Issue 1612083002: Initial --modules=es6 support (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: addressed comments (legacy, doc) + test enum utils Created 4 years, 11 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
« no previous file with comments | « lib/src/utils.dart ('k') | test/codegen/es6_modules.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 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Meta-test that runs all tests we have written. 5 /// Meta-test that runs all tests we have written.
6 library dev_compiler.test.all_tests; 6 library dev_compiler.test.all_tests;
7 7
8 import 'package:test/test.dart'; 8 import 'package:test/test.dart';
9 9
10 import 'closure/closure_annotation_test.dart' as closure_annotation_test; 10 import 'closure/closure_annotation_test.dart' as closure_annotation_test;
11 import 'closure/closure_type_test.dart' as closure_type_test; 11 import 'closure/closure_type_test.dart' as closure_type_test;
12 import 'codegen_test.dart' as codegen_test; 12 import 'codegen_test.dart' as codegen_test;
13 import 'js/builder_test.dart' as builder_test; 13 import 'js/builder_test.dart' as builder_test;
14 import 'end_to_end_test.dart' as e2e; 14 import 'end_to_end_test.dart' as e2e;
15 import 'report_test.dart' as report_test; 15 import 'report_test.dart' as report_test;
16 import 'dependency_graph_test.dart' as dependency_graph_test; 16 import 'dependency_graph_test.dart' as dependency_graph_test;
17 import 'utils_test.dart' as utils_test;
17 18
18 void main() { 19 void main() {
19 group('end-to-end', e2e.main); 20 group('end-to-end', e2e.main);
20 group('report', report_test.main); 21 group('report', report_test.main);
21 group('dependency_graph', dependency_graph_test.main); 22 group('dependency_graph', dependency_graph_test.main);
22 group('codegen', () => codegen_test.main([])); 23 group('codegen', () => codegen_test.main([]));
23 group('closure', () { 24 group('closure', () {
24 closure_annotation_test.main(); 25 closure_annotation_test.main();
25 closure_type_test.main(); 26 closure_type_test.main();
26 }); 27 });
27 group('js', builder_test.main); 28 group('js', builder_test.main);
29 group('utils', utils_test.main);
28 } 30 }
OLDNEW
« no previous file with comments | « lib/src/utils.dart ('k') | test/codegen/es6_modules.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698