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

Unified Diff: pkg/analyzer/test/src/test_all.dart

Issue 887943004: Check PackageMapUriResolver constructor arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for the server and tests Created 5 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/src/test_all.dart
diff --git a/pkg/analyzer/test/src/test_all.dart b/pkg/analyzer/test/src/test_all.dart
index d29d0238600c384e48296b53f3a246ec2fad7abe..4f8b2a59741c84dd82ce2033ba9c468b8af38ab4 100644
--- a/pkg/analyzer/test/src/test_all.dart
+++ b/pkg/analyzer/test/src/test_all.dart
@@ -7,11 +7,13 @@ library test.src;
import 'package:unittest/unittest.dart';
import 'task/test_all.dart' as task;
+import 'util/test_all.dart' as util;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- group('generated tests', () {
+ group('src tests', () {
task.main();
+ util.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698