| 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.resynthesize_strong_test; | 5 library analyzer.test.src.summary.resynthesize_strong_test; |
| 6 | 6 |
| 7 import 'package:analyzer/src/generated/engine.dart'; | 7 import 'package:analyzer/src/generated/engine.dart'; |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 | 9 |
| 10 import '../../reflective_tests.dart'; | 10 import '../../reflective_tests.dart'; |
| 11 import 'resynthesize_test.dart'; | 11 import 'resynthesize_test.dart'; |
| 12 | 12 |
| 13 main() { | 13 main() { |
| 14 groupSep = ' | '; | 14 groupSep = ' | '; |
| 15 runReflectiveTests(ResynthStrongTest); | 15 runReflectiveTests(ResynthesizeStrongTest); |
| 16 } | 16 } |
| 17 | 17 |
| 18 @reflectiveTest | 18 @reflectiveTest |
| 19 class ResynthStrongTest extends ResynthTest { | 19 class ResynthesizeStrongTest extends ResynthesizeElementTest { |
| 20 @override | 20 @override |
| 21 AnalysisOptionsImpl createOptions() => | 21 AnalysisOptionsImpl createOptions() => |
| 22 super.createOptions()..strongMode = true; | 22 super.createOptions()..strongMode = true; |
| 23 } | 23 } |
| OLD | NEW |