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

Side by Side Diff: pkg/analysis_server/test/integration/analysis/reanalyze_test.dart

Issue 849863002: Replace @ReflectiveTestCase() with @reflectiveTest. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months 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 | Annotate | Revision Log
OLDNEW
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.integration.analysis.reanalyze; 5 library test.integration.analysis.reanalyze;
6 6
7 import 'package:analysis_server/src/protocol.dart'; 7 import 'package:analysis_server/src/protocol.dart';
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 9
10 import '../../reflective_tests.dart'; 10 import '../../reflective_tests.dart';
11 import '../integration_tests.dart'; 11 import '../integration_tests.dart';
12 12
13 main() { 13 main() {
14 runReflectiveTests(Test); 14 runReflectiveTests(Test);
15 } 15 }
16 16
17 @ReflectiveTestCase() 17 @reflectiveTest
18 class Test extends AbstractAnalysisServerIntegrationTest { 18 class Test extends AbstractAnalysisServerIntegrationTest {
19 test_reanalyze() { 19 test_reanalyze() {
20 String pathname = sourcePath('test.dart'); 20 String pathname = sourcePath('test.dart');
21 String text = 'main() {}'; 21 String text = 'main() {}';
22 writeFile(pathname, text); 22 writeFile(pathname, text);
23 standardAnalysisSetup(); 23 standardAnalysisSetup();
24 return analysisFinished.then((_) { 24 return analysisFinished.then((_) {
25 // Make sure that reanalyze causes analysis to restart. 25 // Make sure that reanalyze causes analysis to restart.
26 bool analysisRestarted = false; 26 bool analysisRestarted = false;
27 onServerStatus.listen((ServerStatusParams data) { 27 onServerStatus.listen((ServerStatusParams data) {
28 if (data.analysis != null) { 28 if (data.analysis != null) {
29 if (data.analysis.isAnalyzing) { 29 if (data.analysis.isAnalyzing) {
30 analysisRestarted = true; 30 analysisRestarted = true;
31 } 31 }
32 } 32 }
33 }); 33 });
34 sendAnalysisReanalyze(); 34 sendAnalysisReanalyze();
35 return analysisFinished.then((_) { 35 return analysisFinished.then((_) {
36 expect(analysisRestarted, isTrue); 36 expect(analysisRestarted, isTrue);
37 }); 37 });
38 }); 38 });
39 } 39 }
40 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698