| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |