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_constructor; | 5 library test.services.refactoring.rename_constructor; |
6 | 6 |
7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
8 import 'package:analysis_server/src/services/correction/status.dart'; | 8 import 'package:analysis_server/src/services/correction/status.dart'; |
9 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 9 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
10 import 'package:analyzer/dart/ast/ast.dart'; | 10 import 'package:analyzer/dart/ast/ast.dart'; |
11 import 'package:analyzer/dart/element/element.dart'; | 11 import 'package:analyzer/dart/element/element.dart'; |
12 import 'package:test/test.dart'; | 12 import 'package:test/test.dart'; |
13 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
14 | 14 |
15 import '../../utils.dart'; | |
16 import 'abstract_rename.dart'; | 15 import 'abstract_rename.dart'; |
17 | 16 |
18 main() { | 17 main() { |
19 initializeTestEnvironment(); | |
20 defineReflectiveSuite(() { | 18 defineReflectiveSuite(() { |
21 defineReflectiveTests(RenameConstructorTest); | 19 defineReflectiveTests(RenameConstructorTest); |
22 }); | 20 }); |
23 } | 21 } |
24 | 22 |
25 @reflectiveTest | 23 @reflectiveTest |
26 class RenameConstructorTest extends RenameRefactoringTest { | 24 class RenameConstructorTest extends RenameRefactoringTest { |
27 test_checkInitialConditions_inSDK() async { | 25 test_checkInitialConditions_inSDK() async { |
28 indexTestUnit(''' | 26 indexTestUnit(''' |
29 main() { | 27 main() { |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 search, (node) => node is ConstructorDeclaration); | 243 search, (node) => node is ConstructorDeclaration); |
246 createRenameRefactoringForElement(element); | 244 createRenameRefactoringForElement(element); |
247 } | 245 } |
248 | 246 |
249 void _createConstructorInvocationRefactoring(String search) { | 247 void _createConstructorInvocationRefactoring(String search) { |
250 ConstructorElement element = findNodeElementAtString( | 248 ConstructorElement element = findNodeElementAtString( |
251 search, (node) => node is InstanceCreationExpression); | 249 search, (node) => node is InstanceCreationExpression); |
252 createRenameRefactoringForElement(element); | 250 createRenameRefactoringForElement(element); |
253 } | 251 } |
254 } | 252 } |
OLD | NEW |