| Index: pkg/analysis_server/test/services/correction/fix_test.dart
|
| diff --git a/pkg/analysis_server/test/services/correction/fix_test.dart b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| index c90e147250a6a7bffde1347d847a22f5a686dacd..2f0e0bcdc7e553af3e06ea2b4b1927ca9a602e9d 100644
|
| --- a/pkg/analysis_server/test/services/correction/fix_test.dart
|
| +++ b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| @@ -24,7 +24,6 @@ import 'package:analyzer/src/generated/source.dart';
|
| import 'package:test/test.dart';
|
| import 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
| -import '../../abstract_context.dart';
|
| import '../../abstract_single_unit.dart';
|
|
|
| main() {
|
| @@ -186,7 +185,7 @@ bool test() {
|
| 'my_pkg': [myPkgFolder]
|
| });
|
| SourceFactory sourceFactory = new SourceFactory(
|
| - [AbstractContextTest.SDK_RESOLVER, pkgResolver, resourceResolver]);
|
| + [new DartUriResolver(sdk), pkgResolver, resourceResolver]);
|
| if (enableNewAnalysisDriver) {
|
| driver.configure(sourceFactory: sourceFactory);
|
| } else {
|
| @@ -1871,7 +1870,7 @@ part 'my_part.dart';
|
| 'my': <Folder>[provider.getResource('/my/lib')],
|
| });
|
| SourceFactory sourceFactory = new SourceFactory(
|
| - [AbstractContextTest.SDK_RESOLVER, pkgResolver, resourceResolver]);
|
| + [new DartUriResolver(sdk), pkgResolver, resourceResolver]);
|
| if (enableNewAnalysisDriver) {
|
| driver.configure(sourceFactory: sourceFactory);
|
| testUnit = (await driver.getResult(testFile)).unit;
|
| @@ -5340,6 +5339,67 @@ main() {
|
| class FixProcessorTest_Driver extends FixProcessorTest {
|
| @override
|
| bool get enableNewAnalysisDriver => true;
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_AsExpression() {
|
| + return super.test_importLibrarySdk_withClass_AsExpression();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_invocationTarget() {
|
| + return super.test_importLibrarySdk_withClass_invocationTarget();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_IsExpression() {
|
| + return super.test_importLibrarySdk_withClass_IsExpression();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_itemOfList() {
|
| + return super.test_importLibrarySdk_withClass_itemOfList();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_itemOfList_inAnnotation() {
|
| + return super.test_importLibrarySdk_withClass_itemOfList_inAnnotation();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_typeAnnotation() {
|
| + return super.test_importLibrarySdk_withClass_typeAnnotation();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_typeAnnotation_PrefixedIdentifier() {
|
| + return super
|
| + .test_importLibrarySdk_withClass_typeAnnotation_PrefixedIdentifier();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withClass_typeArgument() {
|
| + return super.test_importLibrarySdk_withClass_typeArgument();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withTopLevelVariable() {
|
| + return super.test_importLibrarySdk_withTopLevelVariable();
|
| + }
|
| +
|
| + @failingTest
|
| + @override
|
| + test_importLibrarySdk_withTopLevelVariable_annotation() {
|
| + return super.test_importLibrarySdk_withTopLevelVariable_annotation();
|
| + }
|
| }
|
|
|
| @reflectiveTest
|
|
|