Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Side by Side Diff: pkg/analysis_server/test/analysis/notification_analysis_options_test.dart

Issue 2553203002: Move the linter core to the analyzer package (Closed)
Patch Set: Add missed files Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698