| 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:linter/src/rules.dart'; |
| 12 import 'package:test/test.dart'; | 13 import 'package:test/test.dart'; |
| 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 14 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 14 | 15 |
| 15 import '../analysis_abstract.dart'; | 16 import '../analysis_abstract.dart'; |
| 16 import '../mocks.dart'; | 17 import '../mocks.dart'; |
| 17 | 18 |
| 18 main() { | 19 main() { |
| 19 defineReflectiveSuite(() { | 20 defineReflectiveSuite(() { |
| 20 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); | 21 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); |
| 21 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); | 22 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 68 |
| 68 void setStrongMode(bool isSet) { | 69 void setStrongMode(bool isSet) { |
| 69 addOptionsFile(''' | 70 addOptionsFile(''' |
| 70 analyzer: | 71 analyzer: |
| 71 strong-mode: $isSet | 72 strong-mode: $isSet |
| 72 '''); | 73 '''); |
| 73 } | 74 } |
| 74 | 75 |
| 75 @override | 76 @override |
| 76 void setUp() { | 77 void setUp() { |
| 78 registerLintRules(); |
| 77 super.setUp(); | 79 super.setUp(); |
| 78 server.handlers = [new AnalysisDomainHandler(server)]; | 80 server.handlers = [new AnalysisDomainHandler(server)]; |
| 79 } | 81 } |
| 80 | 82 |
| 81 @override | 83 @override |
| 82 void tearDown() { | 84 void tearDown() { |
| 83 filesErrors[optionsFilePath] = []; | 85 filesErrors[optionsFilePath] = []; |
| 84 filesErrors[testFile] = []; | 86 filesErrors[testFile] = []; |
| 85 super.tearDown(); | 87 super.tearDown(); |
| 86 } | 88 } |
| (...skipping 225 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 |