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

Side by Side Diff: pkg/analyzer/test/src/test_all.dart

Issue 913483002: First cut at analysis driver (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 | Annotate | Revision Log
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 library test.src; 5 library test.src.test_all;
6 6
7 import 'package:unittest/unittest.dart'; 7 import 'package:unittest/unittest.dart';
8 8
9 import 'context/test_all.dart' as context;
9 import 'task/test_all.dart' as task; 10 import 'task/test_all.dart' as task;
10 import 'util/test_all.dart' as util; 11 import 'util/test_all.dart' as util;
11 12
12 /// Utility for manually running all tests. 13 /// Utility for manually running all tests.
13 main() { 14 main() {
14 groupSep = ' | '; 15 groupSep = ' | ';
15 group('src tests', () { 16 group('src tests', () {
17 context.main();
16 task.main(); 18 task.main();
17 util.main(); 19 util.main();
18 }); 20 });
19 } 21 }
OLDNEW
« pkg/analyzer/lib/src/task/driver.dart ('K') | « pkg/analyzer/test/src/task/test_support.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698