| 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 library test.analysis.notification_errors; | 5 library test.analysis.notification_errors; |
| 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/context_manager.dart'; | 9 import 'package:analysis_server/src/context_manager.dart'; |
| 10 import 'package:analysis_server/src/domain_analysis.dart'; | 10 import 'package:analysis_server/src/domain_analysis.dart'; |
| 11 import 'package:analyzer/src/dart/analysis/driver.dart'; | 11 import 'package:analyzer/src/dart/analysis/driver.dart'; |
| 12 import 'package:analyzer/src/generated/engine.dart'; | 12 import 'package:analyzer/src/generated/engine.dart'; |
| 13 import 'package:analyzer/src/lint/linter.dart'; |
| 13 import 'package:analyzer/src/services/lint.dart'; | 14 import 'package:analyzer/src/services/lint.dart'; |
| 14 import 'package:linter/src/linter.dart'; | |
| 15 import 'package:test/test.dart'; | 15 import 'package:test/test.dart'; |
| 16 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 16 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 17 | 17 |
| 18 import '../analysis_abstract.dart'; | 18 import '../analysis_abstract.dart'; |
| 19 import '../mocks.dart'; | 19 import '../mocks.dart'; |
| 20 | 20 |
| 21 main() { | 21 main() { |
| 22 defineReflectiveSuite(() { | 22 defineReflectiveSuite(() { |
| 23 defineReflectiveTests(NotificationErrorsTest); | 23 defineReflectiveTests(NotificationErrorsTest); |
| 24 defineReflectiveTests(NotificationErrorsTest_Driver); | 24 defineReflectiveTests(NotificationErrorsTest_Driver); |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 } | 164 } |
| 165 | 165 |
| 166 @failingTest | 166 @failingTest |
| 167 @override | 167 @override |
| 168 test_importError() { | 168 test_importError() { |
| 169 // The overridden test is failing because we're getting an 'unused import' | 169 // The overridden test is failing because we're getting an 'unused import' |
| 170 // hint rather than a URI does not exist error. | 170 // hint rather than a URI does not exist error. |
| 171 return super.test_importError(); | 171 return super.test_importError(); |
| 172 } | 172 } |
| 173 } | 173 } |
| OLD | NEW |