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

Unified Diff: pkg/analysis_services/test/refactoring/test_all.dart

Issue 458063002: Initial work on refactorings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for review comments Created 6 years, 4 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_services/test/refactoring/test_all.dart
diff --git a/pkg/analyzer/test/source/test_all.dart b/pkg/analysis_services/test/refactoring/test_all.dart
similarity index 68%
copy from pkg/analyzer/test/source/test_all.dart
copy to pkg/analysis_services/test/refactoring/test_all.dart
index b9a145f5554f7830ea1ed46a20f45da446439a7a..0349fe05d3e900a9d02b06b29eb39e14b5209c94 100644
--- a/pkg/analyzer/test/source/test_all.dart
+++ b/pkg/analysis_services/test/refactoring/test_all.dart
@@ -2,17 +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.source;
+library test.services.refactoring;
import 'package:unittest/unittest.dart';
-import 'package_map_resolver_test.dart' as package_map_resolver_test;
-
+import 'rename_local_test.dart' as rename_local_test;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
- group('source', () {
- package_map_resolver_test.main();
+ group('refactoring', () {
+ rename_local_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698