| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.src.task.abstract_context_test; | 5 library test.src.task.abstract_context_test; |
| 6 | 6 |
| 7 import 'package:analyzer/file_system/file_system.dart'; | 7 import 'package:analyzer/file_system/file_system.dart'; |
| 8 import 'package:analyzer/file_system/memory_file_system.dart'; | 8 import 'package:analyzer/file_system/memory_file_system.dart'; |
| 9 import 'package:analyzer/src/context/cache.dart'; | 9 import 'package:analyzer/src/context/cache.dart'; |
| 10 import 'package:analyzer/src/context/context.dart'; | 10 import 'package:analyzer/src/context/context.dart'; |
| 11 import 'package:analyzer/src/generated/element.dart'; | 11 import 'package:analyzer/src/generated/element.dart'; |
| 12 import 'package:analyzer/src/generated/engine.dart' | 12 import 'package:analyzer/src/generated/engine.dart' |
| 13 hide AnalysisCache, AnalysisContextImpl, AnalysisTask; | 13 hide AnalysisCache, AnalysisContextImpl, AnalysisTask; |
| 14 import 'package:analyzer/src/generated/sdk.dart'; | 14 import 'package:analyzer/src/generated/sdk.dart'; |
| 15 import 'package:analyzer/src/generated/source.dart'; | 15 import 'package:analyzer/src/generated/source.dart'; |
| 16 import 'package:analyzer/src/task/driver.dart'; | 16 import 'package:analyzer/src/task/driver.dart'; |
| 17 import 'package:analyzer/task/model.dart'; | 17 import 'package:analyzer/task/model.dart'; |
| 18 import 'package:plugin/manager.dart'; | |
| 19 import 'package:unittest/unittest.dart'; | 18 import 'package:unittest/unittest.dart'; |
| 20 | 19 |
| 21 import 'mock_sdk.dart'; | 20 import 'mock_sdk.dart'; |
| 22 | 21 |
| 23 class AbstractContextTest { | 22 class AbstractContextTest { |
| 24 MemoryResourceProvider resourceProvider = new MemoryResourceProvider(); | 23 MemoryResourceProvider resourceProvider = new MemoryResourceProvider(); |
| 25 | 24 |
| 26 DartSdk sdk = new MockSdk(); | 25 DartSdk sdk = new MockSdk(); |
| 27 SourceFactory sourceFactory; | 26 SourceFactory sourceFactory; |
| 28 AnalysisContextImpl context; | 27 AnalysisContextImpl context; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 context = createAnalysisContext(); | 117 context = createAnalysisContext(); |
| 119 if (options != null) { | 118 if (options != null) { |
| 120 context.analysisOptions = options; | 119 context.analysisOptions = options; |
| 121 } | 120 } |
| 122 context.sourceFactory = sourceFactory; | 121 context.sourceFactory = sourceFactory; |
| 123 analysisCache = context.analysisCache; | 122 analysisCache = context.analysisCache; |
| 124 analysisDriver = context.driver; | 123 analysisDriver = context.driver; |
| 125 } | 124 } |
| 126 | 125 |
| 127 void setUp() { | 126 void setUp() { |
| 128 ExtensionManager extensionManager = new ExtensionManager(); | |
| 129 extensionManager.processPlugins(AnalysisEngine.instance.supportedPlugins); | |
| 130 prepareAnalysisContext(); | 127 prepareAnalysisContext(); |
| 131 } | 128 } |
| 132 | 129 |
| 133 void tearDown() {} | 130 void tearDown() {} |
| 134 } | 131 } |
| OLD | NEW |