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

Side by Side Diff: pkg/analysis_server/test/services/refactoring/rename_import_test.dart

Issue 640253004: Fix for renaming import without an import prefix. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/analysis_server/test/edit/refactoring_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test.services.refactoring.rename_import; 5 library test.services.refactoring.rename_import;
6 6
7 import 'package:analysis_server/src/protocol.dart'; 7 import 'package:analysis_server/src/protocol.dart';
8 import '../../reflective_tests.dart';
9 import 'package:analyzer/src/generated/ast.dart'; 8 import 'package:analyzer/src/generated/ast.dart';
10 import 'package:unittest/unittest.dart'; 9 import 'package:unittest/unittest.dart';
11 10
11 import '../../reflective_tests.dart';
12 import 'abstract_rename.dart'; 12 import 'abstract_rename.dart';
13 13
14 14
15 main() { 15 main() {
16 groupSep = ' | '; 16 groupSep = ' | ';
17 runReflectiveTests(RenameImportTest); 17 runReflectiveTests(RenameImportTest);
18 } 18 }
19 19
20 20
21 @ReflectiveTestCase() 21 @ReflectiveTestCase()
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 // validate change 161 // validate change
162 return assertSuccessfulRefactoring(''' 162 return assertSuccessfulRefactoring('''
163 import 'dart:math' as test; 163 import 'dart:math' as test;
164 import 'dart:async'; 164 import 'dart:async';
165 main() { 165 main() {
166 Future f; 166 Future f;
167 } 167 }
168 '''); 168 ''');
169 } 169 }
170 170
171 test_oldName_empty() {
172 indexTestUnit('''
173 import 'dart:math';
174 import 'dart:async';
175 main() {
176 Future f;
177 }
178 ''');
179 // configure refactoring
180 _createRefactoring("import 'dart:async");
181 expect(refactoring.refactoringName, 'Rename Import Prefix');
182 expect(refactoring.oldName, '');
183 }
184
171 void _createRefactoring(String search) { 185 void _createRefactoring(String search) {
172 ImportDirective directive = 186 ImportDirective directive =
173 findNodeAtString(search, (node) => node is ImportDirective); 187 findNodeAtString(search, (node) => node is ImportDirective);
174 createRenameRefactoringForElement(directive.element); 188 createRenameRefactoringForElement(directive.element);
175 } 189 }
176 } 190 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/edit/refactoring_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698