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

Unified Diff: pkg/analysis_server/test/source/test_all.dart

Issue 941883002: cache pub list results (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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/analysis_server/test/source/test_all.dart
diff --git a/pkg/analyzer/test/src/util/test_all.dart b/pkg/analysis_server/test/source/test_all.dart
similarity index 71%
copy from pkg/analyzer/test/src/util/test_all.dart
copy to pkg/analysis_server/test/source/test_all.dart
index 88de6e41828c7cd5ca545d7398aebaa70df23e9f..3a3e7090a7f11acc53794219046c7526b1d21fed 100644
--- a/pkg/analyzer/test/src/util/test_all.dart
+++ b/pkg/analysis_server/test/source/test_all.dart
@@ -2,16 +2,13 @@
// 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.util;
+library test.source;
+import 'caching_put_package_map_provider_test.dart' as caching_provider_test;
import 'package:unittest/unittest.dart';
-import 'asserts_test.dart' as asserts_test;
-
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- group('task tests', () {
- asserts_test.main();
- });
+ caching_provider_test.main();
}
« no previous file with comments | « pkg/analysis_server/test/source/caching_put_package_map_provider_test.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698