| 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.integration.analysis.highlights; | 5 library test.integration.analysis.highlights; |
| 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(AnalysisHighlightsTest); | 14 runReflectiveTests(AnalysisHighlightsTest); |
| 15 } | 15 } |
| 16 | 16 |
| 17 @ReflectiveTestCase() | 17 @reflectiveTest |
| 18 class AnalysisHighlightsTest extends AbstractAnalysisServerIntegrationTest { | 18 class AnalysisHighlightsTest extends AbstractAnalysisServerIntegrationTest { |
| 19 test_highlights() { | 19 test_highlights() { |
| 20 String pathname = sourcePath('test.dart'); | 20 String pathname = sourcePath('test.dart'); |
| 21 String text = r''' | 21 String text = r''' |
| 22 import 'dart:async' as async; | 22 import 'dart:async' as async; |
| 23 | 23 |
| 24 /** | 24 /** |
| 25 * Doc comment | 25 * Doc comment |
| 26 */ | 26 */ |
| 27 class Class<TypeParameter> { | 27 class Class<TypeParameter> { |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 check(HighlightRegionType.SETTER_DECLARATION, ['setter']); | 141 check(HighlightRegionType.SETTER_DECLARATION, ['setter']); |
| 142 check( | 142 check( |
| 143 HighlightRegionType.TOP_LEVEL_VARIABLE, | 143 HighlightRegionType.TOP_LEVEL_VARIABLE, |
| 144 ['override', 'topLevelVariable']); | 144 ['override', 'topLevelVariable']); |
| 145 check(HighlightRegionType.TYPE_NAME_DYNAMIC, ['dynamic']); | 145 check(HighlightRegionType.TYPE_NAME_DYNAMIC, ['dynamic']); |
| 146 check(HighlightRegionType.TYPE_PARAMETER, ['TypeParameter']); | 146 check(HighlightRegionType.TYPE_PARAMETER, ['TypeParameter']); |
| 147 expect(highlights, isEmpty); | 147 expect(highlights, isEmpty); |
| 148 }); | 148 }); |
| 149 } | 149 } |
| 150 } | 150 } |
| OLD | NEW |