| 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_class_member; | 5 library test.services.refactoring.rename_class_member; |
| 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:analyzer/src/generated/source.dart'; | 9 import 'package:analyzer/src/generated/source.dart'; |
| 10 import 'package:test/test.dart'; | 10 import 'package:test/test.dart'; |
| (...skipping 892 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 } | 903 } |
| 904 | 904 |
| 905 @reflectiveTest | 905 @reflectiveTest |
| 906 class RenameClassMemberTest_Driver extends RenameClassMemberTest { | 906 class RenameClassMemberTest_Driver extends RenameClassMemberTest { |
| 907 @override | 907 @override |
| 908 bool get enableNewAnalysisDriver => true; | 908 bool get enableNewAnalysisDriver => true; |
| 909 | 909 |
| 910 @failingTest | 910 @failingTest |
| 911 @override | 911 @override |
| 912 test_checkFinalConditions_shadowed_byLocalFunction_inSameClass() { | 912 test_checkFinalConditions_shadowed_byLocalFunction_inSameClass() { |
| 913 return test_checkFinalConditions_shadowed_byLocalFunction_inSameClass(); | 913 return super.test_checkFinalConditions_shadowed_byLocalFunction_inSameClass(
); |
| 914 } | 914 } |
| 915 | 915 |
| 916 @failingTest | 916 @failingTest |
| 917 @override | 917 @override |
| 918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { | 918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { |
| 919 return test_checkFinalConditions_shadowed_byLocalVariable_inSameClass(); | 919 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSameClass(
); |
| 920 } | 920 } |
| 921 | 921 |
| 922 @failingTest | 922 @failingTest |
| 923 @override | 923 @override |
| 924 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() { | 924 test_checkFinalConditions_shadowed_byLocalVariable_inSubClass() { |
| 925 return test_checkFinalConditions_shadowed_byLocalVariable_inSubClass(); | 925 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass()
; |
| 926 } | 926 } |
| 927 | 927 |
| 928 @failingTest | 928 @failingTest |
| 929 @override | 929 @override |
| 930 test_createChange_MethodElement_potential() { | 930 test_createChange_MethodElement_potential() { |
| 931 return test_createChange_MethodElement_potential(); | 931 return super.test_createChange_MethodElement_potential(); |
| 932 } | 932 } |
| 933 | 933 |
| 934 @failingTest | 934 @failingTest |
| 935 @override | 935 @override |
| 936 test_createChange_MethodElement_potential_inPubCache() { | 936 test_createChange_MethodElement_potential_inPubCache() { |
| 937 return test_createChange_MethodElement_potential_inPubCache(); | 937 return super.test_createChange_MethodElement_potential_inPubCache(); |
| 938 } | 938 } |
| 939 | 939 |
| 940 @failingTest | 940 @failingTest |
| 941 @override | 941 @override |
| 942 test_createChange_MethodElement_potential_private_otherLibrary() { | 942 test_createChange_MethodElement_potential_private_otherLibrary() { |
| 943 return test_createChange_MethodElement_potential_private_otherLibrary(); | 943 return super.test_createChange_MethodElement_potential_private_otherLibrary(
); |
| 944 } | 944 } |
| 945 } | 945 } |
| OLD | NEW |