| 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; | 5 library test.services.refactoring; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/protocol2.dart'; | 9 import 'package:analysis_server/src/protocol2.dart'; |
| 10 import 'package:analysis_server/src/services/correction/change.dart'; | |
| 11 import 'package:analysis_server/src/services/correction/status.dart'; | 10 import 'package:analysis_server/src/services/correction/status.dart'; |
| 12 import 'package:analysis_server/src/services/index/index.dart'; | 11 import 'package:analysis_server/src/services/index/index.dart'; |
| 13 import 'package:analysis_server/src/services/index/local_memory_index.dart'; | 12 import 'package:analysis_server/src/services/index/local_memory_index.dart'; |
| 14 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 13 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
| 15 import 'package:analysis_server/src/services/search/search_engine_internal.dart'
; | 14 import 'package:analysis_server/src/services/search/search_engine_internal.dart'
; |
| 16 import 'package:analysis_testing/abstract_single_unit.dart'; | 15 import 'package:analysis_testing/abstract_single_unit.dart'; |
| 17 import 'package:analyzer/src/generated/ast.dart'; | 16 import 'package:analyzer/src/generated/ast.dart'; |
| 18 import 'package:analyzer/src/generated/source.dart'; | 17 import 'package:analyzer/src/generated/source.dart'; |
| 19 import 'package:unittest/unittest.dart'; | 18 import 'package:unittest/unittest.dart'; |
| 20 | 19 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 34 } | 33 } |
| 35 | 34 |
| 36 | 35 |
| 37 /** | 36 /** |
| 38 * The base class for all [Refactoring] tests. | 37 * The base class for all [Refactoring] tests. |
| 39 */ | 38 */ |
| 40 abstract class RefactoringTest extends AbstractSingleUnitTest { | 39 abstract class RefactoringTest extends AbstractSingleUnitTest { |
| 41 Index index; | 40 Index index; |
| 42 SearchEngineImpl searchEngine; | 41 SearchEngineImpl searchEngine; |
| 43 | 42 |
| 44 Change refactoringChange; | 43 SourceChange refactoringChange; |
| 45 | 44 |
| 46 Refactoring get refactoring; | 45 Refactoring get refactoring; |
| 47 | 46 |
| 48 /** | 47 /** |
| 49 * Asserts that [refactoring] initial/final conditions status is OK. | 48 * Asserts that [refactoring] initial/final conditions status is OK. |
| 50 */ | 49 */ |
| 51 Future assertRefactoringConditionsOK() { | 50 Future assertRefactoringConditionsOK() { |
| 52 return refactoring.checkInitialConditions().then((status) { | 51 return refactoring.checkInitialConditions().then((status) { |
| 53 assertRefactoringStatusOK(status); | 52 assertRefactoringStatusOK(status); |
| 54 return refactoring.checkFinalConditions().then((status) { | 53 return refactoring.checkFinalConditions().then((status) { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 CompilationUnit unit = resolveLibraryUnit(source); | 112 CompilationUnit unit = resolveLibraryUnit(source); |
| 114 index.indexUnit(context, unit); | 113 index.indexUnit(context, unit); |
| 115 } | 114 } |
| 116 | 115 |
| 117 void setUp() { | 116 void setUp() { |
| 118 super.setUp(); | 117 super.setUp(); |
| 119 index = createLocalMemoryIndex(); | 118 index = createLocalMemoryIndex(); |
| 120 searchEngine = new SearchEngineImpl(index); | 119 searchEngine = new SearchEngineImpl(index); |
| 121 } | 120 } |
| 122 } | 121 } |
| OLD | NEW |