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'; | |
13 import 'package:test/test.dart'; | 12 import 'package:test/test.dart'; |
14 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
15 | 14 |
16 import '../analysis_abstract.dart'; | 15 import '../analysis_abstract.dart'; |
17 import '../mocks.dart'; | 16 import '../mocks.dart'; |
18 | 17 |
19 main() { | 18 main() { |
20 defineReflectiveSuite(() { | 19 defineReflectiveSuite(() { |
21 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); | 20 defineReflectiveTests(NewAnalysisOptionsFileNotificationTest); |
22 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); | 21 defineReflectiveTests(OldAnalysisOptionsFileNotificationTest); |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 67 |
69 void setStrongMode(bool isSet) { | 68 void setStrongMode(bool isSet) { |
70 addOptionsFile(''' | 69 addOptionsFile(''' |
71 analyzer: | 70 analyzer: |
72 strong-mode: $isSet | 71 strong-mode: $isSet |
73 '''); | 72 '''); |
74 } | 73 } |
75 | 74 |
76 @override | 75 @override |
77 void setUp() { | 76 void setUp() { |
78 registerLintRules(); | |
79 super.setUp(); | 77 super.setUp(); |
80 server.handlers = [new AnalysisDomainHandler(server)]; | 78 server.handlers = [new AnalysisDomainHandler(server)]; |
81 } | 79 } |
82 | 80 |
83 @override | 81 @override |
84 void tearDown() { | 82 void tearDown() { |
85 filesErrors[optionsFilePath] = []; | 83 filesErrors[optionsFilePath] = []; |
86 filesErrors[testFile] = []; | 84 filesErrors[testFile] = []; |
87 super.tearDown(); | 85 super.tearDown(); |
88 } | 86 } |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 class NewAnalysisOptionsFileNotificationTest | 312 class NewAnalysisOptionsFileNotificationTest |
315 extends AnalysisOptionsFileNotificationTest { | 313 extends AnalysisOptionsFileNotificationTest { |
316 String get optionsFilePath => '$projectPath/analysis_options.yaml'; | 314 String get optionsFilePath => '$projectPath/analysis_options.yaml'; |
317 } | 315 } |
318 | 316 |
319 @reflectiveTest | 317 @reflectiveTest |
320 class OldAnalysisOptionsFileNotificationTest | 318 class OldAnalysisOptionsFileNotificationTest |
321 extends AnalysisOptionsFileNotificationTest { | 319 extends AnalysisOptionsFileNotificationTest { |
322 String get optionsFilePath => '$projectPath/.analysis_options'; | 320 String get optionsFilePath => '$projectPath/.analysis_options'; |
323 } | 321 } |
OLD | NEW |