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:analyzer/src/generated/sdk.dart'; | 8 import 'package:analyzer/src/generated/sdk.dart'; |
9 import 'package:unittest/unittest.dart'; | 9 import 'package:unittest/unittest.dart'; |
10 | 10 |
11 import '../../reflective_tests.dart'; | 11 import '../../reflective_tests.dart'; |
12 import '../context/abstract_context.dart'; | 12 import '../context/abstract_context.dart'; |
13 import 'resynthesize_test.dart'; | 13 import 'resynthesize_test.dart'; |
14 | 14 |
15 main() { | 15 main() { |
16 groupSep = ' | '; | 16 groupSep = ' | '; |
17 runReflectiveTests(ResynthesizeStrongTest); | 17 runReflectiveTests(ResynthesizeStrongTest); |
18 } | 18 } |
19 | 19 |
20 @reflectiveTest | 20 @reflectiveTest |
21 class ResynthesizeStrongTest extends ResynthesizeElementTest { | 21 class ResynthesizeStrongTest extends ResynthesizeElementTest { |
22 @override | 22 @override |
| 23 bool allowMissingFiles = false; |
| 24 |
| 25 @override |
23 DartSdk createDartSdk() => AbstractContextTest.SHARED_STRONG_MOCK_SDK; | 26 DartSdk createDartSdk() => AbstractContextTest.SHARED_STRONG_MOCK_SDK; |
24 | 27 |
25 @override | 28 @override |
26 AnalysisOptionsImpl createOptions() => | 29 AnalysisOptionsImpl createOptions() => |
27 super.createOptions()..strongMode = true; | 30 super.createOptions()..strongMode = true; |
28 } | 31 } |
OLD | NEW |