OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 import 'package:analysis_server/protocol/protocol.dart'; | 5 import 'package:analysis_server/protocol/protocol.dart'; |
6 import 'package:analysis_server/protocol/protocol_generated.dart'; | 6 import 'package:analysis_server/protocol/protocol_generated.dart'; |
7 import 'package:analysis_server/src/constants.dart'; | 7 import 'package:analysis_server/src/constants.dart'; |
8 import 'package:analysis_server/src/context_manager.dart'; | 8 import 'package:analysis_server/src/context_manager.dart'; |
9 import 'package:analysis_server/src/domain_analysis.dart'; | 9 import 'package:analysis_server/src/domain_analysis.dart'; |
10 import 'package:analyzer/src/dart/analysis/driver.dart'; | 10 import 'package:analyzer/src/dart/analysis/driver.dart'; |
11 import 'package:analyzer/src/generated/engine.dart'; | 11 import 'package:analyzer/src/generated/engine.dart'; |
12 import 'package:analyzer/src/lint/linter.dart'; | 12 import 'package:analyzer/src/lint/linter.dart'; |
13 import 'package:analyzer/src/services/lint.dart'; | 13 import 'package:analyzer/src/services/lint.dart'; |
| 14 import 'package:analyzer_plugin/protocol/protocol_common.dart'; |
14 import 'package:linter/src/rules.dart'; | 15 import 'package:linter/src/rules.dart'; |
15 import 'package:test/test.dart'; | 16 import 'package:test/test.dart'; |
16 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 17 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
17 | 18 |
18 import '../analysis_abstract.dart'; | 19 import '../analysis_abstract.dart'; |
19 import '../mocks.dart'; | 20 import '../mocks.dart'; |
20 | 21 |
21 main() { | 22 main() { |
22 defineReflectiveSuite(() { | 23 defineReflectiveSuite(() { |
23 defineReflectiveTests(NotificationErrorsTest); | 24 defineReflectiveTests(NotificationErrorsTest); |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 '''); | 145 '''); |
145 await waitForTasksFinished(); | 146 await waitForTasksFinished(); |
146 await pumpEventQueue(); | 147 await pumpEventQueue(); |
147 List<AnalysisError> errors = filesErrors[testFile]; | 148 List<AnalysisError> errors = filesErrors[testFile]; |
148 expect(errors, hasLength(1)); | 149 expect(errors, hasLength(1)); |
149 AnalysisError error = errors[0]; | 150 AnalysisError error = errors[0]; |
150 expect(error.severity, AnalysisErrorSeverity.WARNING); | 151 expect(error.severity, AnalysisErrorSeverity.WARNING); |
151 expect(error.type, AnalysisErrorType.STATIC_WARNING); | 152 expect(error.type, AnalysisErrorType.STATIC_WARNING); |
152 } | 153 } |
153 } | 154 } |
OLD | NEW |