Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: pkg/analysis_server/test/services/correction/fix_test.dart

Issue 2619623002: Fix code for @failingTest refactoring tests. (Closed)
Patch Set: Also update correction tests. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 0739abe7dad6791dba2ee678952d8163caf185bf..51d7f3ff41df41cc5de922668e2ff0f159ea9878 100644
--- a/pkg/analysis_server/test/services/correction/fix_test.dart
+++ b/pkg/analysis_server/test/services/correction/fix_test.dart
@@ -5379,157 +5379,158 @@ class FixProcessorTest_Driver extends FixProcessorTest {
@failingTest
@override
test_addFieldFormalParameters_hasRequiredParameter() {
- return test_addFieldFormalParameters_hasRequiredParameter();
+ return super.test_addFieldFormalParameters_hasRequiredParameter();
}
@failingTest
@override
test_addFieldFormalParameters_noParameters() {
- return test_addFieldFormalParameters_noParameters();
+ return super.test_addFieldFormalParameters_noParameters();
}
@failingTest
@override
test_addFieldFormalParameters_noRequiredParameter() {
- return test_addFieldFormalParameters_noRequiredParameter();
+ return super.test_addFieldFormalParameters_noRequiredParameter();
}
@failingTest
@override
test_addPartOfDirective() {
- return test_addPartOfDirective();
+ return super.test_addPartOfDirective();
}
@failingTest
@override
test_addSync_blockFunctionBody() {
- return test_addSync_blockFunctionBody();
+ return super.test_addSync_blockFunctionBody();
}
@failingTest
@override
test_createFile_forPart_inPackageLib() {
- return test_createFile_forPart_inPackageLib();
+ return super.test_createFile_forPart_inPackageLib();
}
@failingTest
@override
test_importLibraryPackage_preferDirectOverExport() {
- return test_importLibraryPackage_preferDirectOverExport();
+ return super.test_importLibraryPackage_preferDirectOverExport();
}
@failingTest
@override
test_importLibraryPackage_preferDirectOverExport_src() {
- return test_importLibraryPackage_preferDirectOverExport_src();
+ return super.test_importLibraryPackage_preferDirectOverExport_src();
}
@failingTest
@override
test_importLibraryPackage_preferPublicOverPrivate() {
- return test_importLibraryPackage_preferPublicOverPrivate();
+ return super.test_importLibraryPackage_preferPublicOverPrivate();
}
@failingTest
@override
test_importLibraryProject_withClass_annotation() {
- return test_importLibraryProject_withClass_annotation();
+ return super.test_importLibraryProject_withClass_annotation();
}
@failingTest
@override
test_importLibraryProject_withClass_constInstanceCreation() {
- return test_importLibraryProject_withClass_constInstanceCreation();
+ return super.test_importLibraryProject_withClass_constInstanceCreation();
}
@failingTest
@override
test_importLibraryProject_withClass_hasOtherLibraryWithPrefix() {
- return test_importLibraryProject_withClass_hasOtherLibraryWithPrefix();
+ return super
+ .test_importLibraryProject_withClass_hasOtherLibraryWithPrefix();
}
@failingTest
@override
test_importLibraryProject_withClass_inParentFolder() {
- return test_importLibraryProject_withClass_inParentFolder();
+ return super.test_importLibraryProject_withClass_inParentFolder();
}
@failingTest
@override
test_importLibraryProject_withClass_inRelativeFolder() {
- return test_importLibraryProject_withClass_inRelativeFolder();
+ return super.test_importLibraryProject_withClass_inRelativeFolder();
}
@failingTest
@override
test_importLibraryProject_withClass_inSameFolder() {
- return test_importLibraryProject_withClass_inSameFolder();
+ return super.test_importLibraryProject_withClass_inSameFolder();
}
@failingTest
@override
test_importLibraryProject_withFunction() {
- return test_importLibraryProject_withFunction();
+ return super.test_importLibraryProject_withFunction();
}
@failingTest
@override
test_importLibraryProject_withFunction_unresolvedMethod() {
- return test_importLibraryProject_withFunction_unresolvedMethod();
+ return super.test_importLibraryProject_withFunction_unresolvedMethod();
}
@failingTest
@override
test_importLibraryProject_withFunctionTypeAlias() {
- return test_importLibraryProject_withFunctionTypeAlias();
+ return super.test_importLibraryProject_withFunctionTypeAlias();
}
@failingTest
@override
test_importLibraryProject_withTopLevelVariable() {
- return test_importLibraryProject_withTopLevelVariable();
+ return super.test_importLibraryProject_withTopLevelVariable();
}
@failingTest
@override
test_importLibrarySdk_withClass_itemOfList() {
- return test_importLibrarySdk_withClass_itemOfList();
+ return super.test_importLibrarySdk_withClass_itemOfList();
}
@failingTest
@override
test_importLibrarySdk_withTopLevelVariable() {
- return test_importLibrarySdk_withTopLevelVariable();
+ return super.test_importLibrarySdk_withTopLevelVariable();
}
@failingTest
@override
test_importLibrarySdk_withTopLevelVariable_annotation() {
- return test_importLibrarySdk_withTopLevelVariable_annotation();
+ return super.test_importLibrarySdk_withTopLevelVariable_annotation();
}
@failingTest
@override
test_importLibraryShow_project() {
- return test_importLibraryShow_project();
+ return super.test_importLibraryShow_project();
}
@failingTest
@override
test_noException_1() {
- return test_noException_1();
+ return super.test_noException_1();
}
@failingTest
@override
test_replaceImportUri_inProject() {
- return test_replaceImportUri_inProject();
+ return super.test_replaceImportUri_inProject();
}
@failingTest
@override
test_replaceImportUri_package() {
- return test_replaceImportUri_package();
+ return super.test_replaceImportUri_package();
}
}

Powered by Google App Engine
This is Rietveld 408576698