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

Unified Diff: pkg/analyzer/test/src/task/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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/src/task/test_all.dart
diff --git a/pkg/analyzer/test/src/task/test_all.dart b/pkg/analyzer/test/src/task/test_all.dart
index 12fccc47c4832b728165c1ae005b0db7e0fcf708..39216fe13273f61fc365deabfada5e851abe7926 100644
--- a/pkg/analyzer/test/src/task/test_all.dart
+++ b/pkg/analyzer/test/src/task/test_all.dart
@@ -2,11 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library test.src.task;
+library test.src.task.test_all;
import 'package:unittest/unittest.dart';
import 'dart_test.dart' as dart_test;
+import 'driver_test.dart' as driver_test;
import 'inputs_test.dart' as inputs_test;
import 'manager_test.dart' as manager_test;
import 'model_test.dart' as model_test;
@@ -16,6 +17,7 @@ main() {
groupSep = ' | ';
group('task tests', () {
dart_test.main();
+ driver_test.main();
inputs_test.main();
manager_test.main();
model_test.main();

Powered by Google App Engine
This is Rietveld 408576698