| 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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 @override | 917 @override |
| 918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { | 918 test_checkFinalConditions_shadowed_byLocalVariable_inSameClass() { |
| 919 return super.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 super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass()
; | 925 return super.test_checkFinalConditions_shadowed_byLocalVariable_inSubClass()
; |
| 926 } | 926 } |
| 927 | |
| 928 @failingTest | |
| 929 @override | |
| 930 test_createChange_MethodElement_potential() { | |
| 931 return super.test_createChange_MethodElement_potential(); | |
| 932 } | |
| 933 | |
| 934 @failingTest | |
| 935 @override | |
| 936 test_createChange_MethodElement_potential_inPubCache() { | |
| 937 return super.test_createChange_MethodElement_potential_inPubCache(); | |
| 938 } | |
| 939 | |
| 940 @failingTest | |
| 941 @override | |
| 942 test_createChange_MethodElement_potential_private_otherLibrary() { | |
| 943 return super.test_createChange_MethodElement_potential_private_otherLibrary(
); | |
| 944 } | |
| 945 } | 927 } |
| OLD | NEW |