| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 test.analysis.notification_analysis_options_test; | 5 library test.analysis.notification_analysis_options_test; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/src/constants.dart'; | 8 import 'package:analysis_server/src/constants.dart'; |
| 9 import 'package:analysis_server/src/domain_analysis.dart'; | 9 import 'package:analysis_server/src/domain_analysis.dart'; |
| 10 import 'package:analyzer/src/generated/engine.dart'; | 10 import 'package:analyzer/src/generated/engine.dart'; |
| 11 import 'package:analyzer/src/services/lint.dart'; | 11 import 'package:analyzer/src/services/lint.dart'; |
| 12 import 'package:test/test.dart'; |
| 12 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 13 import 'package:unittest/unittest.dart'; | |
| 14 | 14 |
| 15 import '../analysis_abstract.dart'; | 15 import '../analysis_abstract.dart'; |
| 16 import '../mocks.dart'; | 16 import '../mocks.dart'; |
| 17 import '../utils.dart'; | 17 import '../utils.dart'; |
| 18 | 18 |
| 19 main() { | 19 main() { |
| 20 initializeTestEnvironment(); | 20 initializeTestEnvironment(); |
| 21 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); | 21 defineReflectiveSuite(() { |
| 22 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); | 22 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); |
| 23 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); |
| 24 }); |
| 23 } | 25 } |
| 24 | 26 |
| 25 abstract class AnalysisOptionsFileNotificationTest | 27 abstract class AnalysisOptionsFileNotificationTest |
| 26 extends AbstractAnalysisTest { | 28 extends AbstractAnalysisTest { |
| 27 Map<String, List<AnalysisError>> filesErrors = {}; | 29 Map<String, List<AnalysisError>> filesErrors = {}; |
| 28 | 30 |
| 29 final testSource = ''' | 31 final testSource = ''' |
| 30 main() { | 32 main() { |
| 31 var x = ''; | 33 var x = ''; |
| 32 int y = x; // Not assignable in strong-mode | 34 int y = x; // Not assignable in strong-mode |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 class NewAnalysisOptionsFileNotificationTest | 314 class NewAnalysisOptionsFileNotificationTest |
| 313 extends AnalysisOptionsFileNotificationTest { | 315 extends AnalysisOptionsFileNotificationTest { |
| 314 String get optionsFilePath => '$projectPath/analysis_options.yaml'; | 316 String get optionsFilePath => '$projectPath/analysis_options.yaml'; |
| 315 } | 317 } |
| 316 | 318 |
| 317 @reflectiveTest | 319 @reflectiveTest |
| 318 class OldAnalysisOptionsFileNotificationTest | 320 class OldAnalysisOptionsFileNotificationTest |
| 319 extends AnalysisOptionsFileNotificationTest { | 321 extends AnalysisOptionsFileNotificationTest { |
| 320 String get optionsFilePath => '$projectPath/.analysis_options'; | 322 String get optionsFilePath => '$projectPath/.analysis_options'; |
| 321 } | 323 } |
| OLD | NEW |