| 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.search.top_level_declarations; | 5 library test.search.top_level_declarations; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/protocol.dart'; | 9 import 'package:analysis_server/src/protocol.dart'; |
| 10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
| 11 | 11 |
| 12 import '../reflective_tests.dart'; | 12 import '../reflective_tests.dart'; |
| 13 import 'abstract_search_domain.dart'; | 13 import 'abstract_search_domain.dart'; |
| 14 | 14 |
| 15 | 15 |
| 16 main() { | 16 main() { |
| 17 groupSep = ' | '; | 17 groupSep = ' | '; |
| 18 runReflectiveTests(TopLevelDeclarationsTest); | 18 runReflectiveTests(TopLevelDeclarationsTest); |
| 19 } | 19 } |
| 20 | 20 |
| 21 | 21 |
| 22 @ReflectiveTestCase() | 22 @reflectiveTest |
| 23 class TopLevelDeclarationsTest extends AbstractSearchDomainTest { | 23 class TopLevelDeclarationsTest extends AbstractSearchDomainTest { |
| 24 void assertHasDeclaration(ElementKind kind, String name) { | 24 void assertHasDeclaration(ElementKind kind, String name) { |
| 25 result = findTopLevelResult(kind, name); | 25 result = findTopLevelResult(kind, name); |
| 26 if (result == null) { | 26 if (result == null) { |
| 27 fail('Not found: kind=$kind name="$name"\nin\n' + results.join('\n')); | 27 fail('Not found: kind=$kind name="$name"\nin\n' + results.join('\n')); |
| 28 } | 28 } |
| 29 } | 29 } |
| 30 | 30 |
| 31 void assertNoDeclaration(ElementKind kind, String name) { | 31 void assertNoDeclaration(ElementKind kind, String name) { |
| 32 result = findTopLevelResult(kind, name); | 32 result = findTopLevelResult(kind, name); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 return findTopLevelDeclarations('^[A-E]\$').then((_) { | 69 return findTopLevelDeclarations('^[A-E]\$').then((_) { |
| 70 assertHasDeclaration(ElementKind.CLASS, 'A'); | 70 assertHasDeclaration(ElementKind.CLASS, 'A'); |
| 71 assertHasDeclaration(ElementKind.CLASS, 'B'); | 71 assertHasDeclaration(ElementKind.CLASS, 'B'); |
| 72 assertHasDeclaration(ElementKind.FUNCTION_TYPE_ALIAS, 'C'); | 72 assertHasDeclaration(ElementKind.FUNCTION_TYPE_ALIAS, 'C'); |
| 73 assertHasDeclaration(ElementKind.FUNCTION, 'D'); | 73 assertHasDeclaration(ElementKind.FUNCTION, 'D'); |
| 74 assertHasDeclaration(ElementKind.TOP_LEVEL_VARIABLE, 'E'); | 74 assertHasDeclaration(ElementKind.TOP_LEVEL_VARIABLE, 'E'); |
| 75 assertNoDeclaration(ElementKind.CLASS, 'ABC'); | 75 assertNoDeclaration(ElementKind.CLASS, 'ABC'); |
| 76 }); | 76 }); |
| 77 } | 77 } |
| 78 } | 78 } |
| OLD | NEW |