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

Unified Diff: pkg/analyzer/test/src/util/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/util/test_all.dart
diff --git a/pkg/analyzer/test/src/test_all.dart b/pkg/analyzer/test/src/util/test_all.dart
similarity index 74%
copy from pkg/analyzer/test/src/test_all.dart
copy to pkg/analyzer/test/src/util/test_all.dart
index d29d0238600c384e48296b53f3a246ec2fad7abe..88de6e41828c7cd5ca545d7398aebaa70df23e9f 100644
--- a/pkg/analyzer/test/src/test_all.dart
+++ b/pkg/analyzer/test/src/util/test_all.dart
@@ -2,16 +2,16 @@
// 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;
+library test.src.util;
import 'package:unittest/unittest.dart';
-import 'task/test_all.dart' as task;
+import 'asserts_test.dart' as asserts_test;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- group('generated tests', () {
- task.main();
+ group('task tests', () {
+ asserts_test.main();
});
}
« pkg/analyzer/test/src/util/asserts_test.dart ('K') | « pkg/analyzer/test/src/util/asserts_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698