| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 5 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 6 | 6 |
| 7 import 'strong_mode_test.dart'; | 7 import 'strong_mode_test.dart'; |
| 8 | 8 |
| 9 main() { | 9 main() { |
| 10 defineReflectiveSuite(() { | 10 defineReflectiveSuite(() { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 @failingTest | 53 @failingTest |
| 54 @override | 54 @override |
| 55 test_genericMethod_functionInvocation_inferred() { | 55 test_genericMethod_functionInvocation_inferred() { |
| 56 return super.test_genericMethod_functionInvocation_inferred(); | 56 return super.test_genericMethod_functionInvocation_inferred(); |
| 57 } | 57 } |
| 58 | 58 |
| 59 @failingTest | 59 @failingTest |
| 60 @override | 60 @override |
| 61 test_genericMethod_override_covariant_field() async { |
| 62 return super.test_genericMethod_override_covariant_field(); |
| 63 } |
| 64 |
| 65 @failingTest |
| 66 @override |
| 61 test_genericMethod_tearoff() { | 67 test_genericMethod_tearoff() { |
| 62 return super.test_genericMethod_tearoff(); | 68 return super.test_genericMethod_tearoff(); |
| 63 } | 69 } |
| 64 } | 70 } |
| 65 | 71 |
| 66 @reflectiveTest | 72 @reflectiveTest |
| 67 class StrongModeTypePropagationTest_Driver | 73 class StrongModeTypePropagationTest_Driver |
| 68 extends StrongModeTypePropagationTest { | 74 extends StrongModeTypePropagationTest { |
| 69 @override | 75 @override |
| 70 bool get enableNewAnalysisDriver => true; | 76 bool get enableNewAnalysisDriver => true; |
| 71 } | 77 } |
| OLD | NEW |