| 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.abstract_search_domain; | 5 library test.search.abstract_search_domain; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 9 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 10 import 'package:analysis_server/src/constants.dart'; | 10 import 'package:analysis_server/src/constants.dart'; |
| 11 import 'package:analysis_server/src/search/search_domain.dart'; | 11 import 'package:analysis_server/src/search/search_domain.dart'; |
| 12 import 'package:analysis_server/src/services/index/index.dart' | 12 import 'package:analysis_server/src/services/index/index.dart' |
| 13 show Index, createMemoryIndex; | 13 show Index, createMemoryIndex; |
| 14 import 'package:unittest/unittest.dart'; | 14 import 'package:test/test.dart'; |
| 15 | 15 |
| 16 import '../analysis_abstract.dart'; | 16 import '../analysis_abstract.dart'; |
| 17 | 17 |
| 18 class AbstractSearchDomainTest extends AbstractAnalysisTest { | 18 class AbstractSearchDomainTest extends AbstractAnalysisTest { |
| 19 final Map<String, _ResultSet> resultSets = {}; | 19 final Map<String, _ResultSet> resultSets = {}; |
| 20 String searchId; | 20 String searchId; |
| 21 List<SearchResult> results = <SearchResult>[]; | 21 List<SearchResult> results = <SearchResult>[]; |
| 22 SearchResult result; | 22 SearchResult result; |
| 23 | 23 |
| 24 void assertHasResult(SearchResultKind kind, String search, [int length]) { | 24 void assertHasResult(SearchResultKind kind, String search, [int length]) { |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 } | 109 } |
| 110 | 110 |
| 111 class _ResultSet { | 111 class _ResultSet { |
| 112 final String id; | 112 final String id; |
| 113 final List<SearchResult> results = <SearchResult>[]; | 113 final List<SearchResult> results = <SearchResult>[]; |
| 114 bool done = false; | 114 bool done = false; |
| 115 | 115 |
| 116 _ResultSet(this.id); | 116 _ResultSet(this.id); |
| 117 } | 117 } |
| OLD | NEW |