| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 analyzer.test.src.summary.summarize_ast_strong_test; | 5 library analyzer.test.src.summary.summarize_ast_strong_test; |
| 6 | 6 |
| 7 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 7 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 8 | 9 |
| 9 import '../../reflective_tests.dart'; | |
| 10 import 'summarize_ast_test.dart'; | 10 import 'summarize_ast_test.dart'; |
| 11 | 11 |
| 12 main() { | 12 main() { |
| 13 groupSep = ' | '; | 13 groupSep = ' | '; |
| 14 runReflectiveTests(LinkedSummarizeAstStrongTest); | 14 defineReflectiveTests(LinkedSummarizeAstStrongTest); |
| 15 } | 15 } |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * Override of [LinkedSummarizeAstTest] which uses strong mode. | 18 * Override of [LinkedSummarizeAstTest] which uses strong mode. |
| 19 */ | 19 */ |
| 20 @reflectiveTest | 20 @reflectiveTest |
| 21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest { | 21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest { |
| 22 @override | 22 @override |
| 23 bool get strongMode => true; | 23 bool get strongMode => true; |
| 24 | 24 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 test_syntheticFunctionType_inGenericFunction() { | 129 test_syntheticFunctionType_inGenericFunction() { |
| 130 super.test_syntheticFunctionType_inGenericFunction(); | 130 super.test_syntheticFunctionType_inGenericFunction(); |
| 131 } | 131 } |
| 132 | 132 |
| 133 @override | 133 @override |
| 134 @failingTest | 134 @failingTest |
| 135 test_unused_type_parameter() { | 135 test_unused_type_parameter() { |
| 136 super.test_unused_type_parameter(); | 136 super.test_unused_type_parameter(); |
| 137 } | 137 } |
| 138 } | 138 } |
| OLD | NEW |