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/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart' |
8 hide AnalysisOptions; | 9 hide AnalysisOptions; |
9 import 'package:analysis_server/src/constants.dart'; | 10 import 'package:analysis_server/src/constants.dart'; |
10 import 'package:analysis_server/src/domain_analysis.dart'; | 11 import 'package:analysis_server/src/domain_analysis.dart'; |
11 import 'package:analyzer/src/generated/engine.dart'; | 12 import 'package:analyzer/src/generated/engine.dart'; |
12 import 'package:linter/src/rules.dart'; | 13 import 'package:linter/src/rules.dart'; |
13 import 'package:test/test.dart'; | 14 import 'package:test/test.dart'; |
14 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 15 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
15 | 16 |
16 import '../analysis_abstract.dart'; | 17 import '../analysis_abstract.dart'; |
17 import '../mocks.dart'; | 18 import '../mocks.dart'; |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 @reflectiveTest | 360 @reflectiveTest |
360 class OldAnalysisOptionsFileNotificationTest_Driver | 361 class OldAnalysisOptionsFileNotificationTest_Driver |
361 extends OldAnalysisOptionsFileNotificationTest { | 362 extends OldAnalysisOptionsFileNotificationTest { |
362 @override | 363 @override |
363 void setUp() { | 364 void setUp() { |
364 enableNewAnalysisDriver = true; | 365 enableNewAnalysisDriver = true; |
365 generateSummaryFiles = true; | 366 generateSummaryFiles = true; |
366 super.setUp(); | 367 super.setUp(); |
367 } | 368 } |
368 } | 369 } |
OLD | NEW |