| 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 | |
| 67 test_genericMethod_tearoff() { | 61 test_genericMethod_tearoff() { |
| 68 return super.test_genericMethod_tearoff(); | 62 return super.test_genericMethod_tearoff(); |
| 69 } | 63 } |
| 70 } | 64 } |
| 71 | 65 |
| 72 @reflectiveTest | 66 @reflectiveTest |
| 73 class StrongModeTypePropagationTest_Driver | 67 class StrongModeTypePropagationTest_Driver |
| 74 extends StrongModeTypePropagationTest { | 68 extends StrongModeTypePropagationTest { |
| 75 @override | 69 @override |
| 76 bool get enableNewAnalysisDriver => true; | 70 bool get enableNewAnalysisDriver => true; |
| 77 } | 71 } |
| OLD | NEW |