| 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.search_result; | 5 library test.search.search_result; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/protocol_server.dart'; | 7 import 'package:analysis_server/src/protocol_server.dart'; |
| 8 import 'package:analysis_server/src/services/search/search_engine.dart'; | 8 import 'package:analysis_server/src/services/search/search_engine.dart'; |
| 9 import 'package:test/test.dart'; | 9 import 'package:test/test.dart'; |
| 10 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 10 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 11 | 11 |
| 12 import '../utils.dart'; | |
| 13 | |
| 14 main() { | 12 main() { |
| 15 initializeTestEnvironment(); | |
| 16 defineReflectiveSuite(() { | 13 defineReflectiveSuite(() { |
| 17 defineReflectiveTests(SearchResultKindTest); | 14 defineReflectiveTests(SearchResultKindTest); |
| 18 }); | 15 }); |
| 19 } | 16 } |
| 20 | 17 |
| 21 @reflectiveTest | 18 @reflectiveTest |
| 22 class SearchResultKindTest { | 19 class SearchResultKindTest { |
| 23 void test_fromEngine() { | 20 void test_fromEngine() { |
| 24 expect(newSearchResultKind_fromEngine(MatchKind.DECLARATION), | 21 expect(newSearchResultKind_fromEngine(MatchKind.DECLARATION), |
| 25 SearchResultKind.DECLARATION); | 22 SearchResultKind.DECLARATION); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 51 SearchResultKind.INVOCATION); | 48 SearchResultKind.INVOCATION); |
| 52 expect(new SearchResultKind(SearchResultKind.UNKNOWN.name), | 49 expect(new SearchResultKind(SearchResultKind.UNKNOWN.name), |
| 53 SearchResultKind.UNKNOWN); | 50 SearchResultKind.UNKNOWN); |
| 54 } | 51 } |
| 55 | 52 |
| 56 void test_toString() { | 53 void test_toString() { |
| 57 expect(SearchResultKind.DECLARATION.toString(), | 54 expect(SearchResultKind.DECLARATION.toString(), |
| 58 'SearchResultKind.DECLARATION'); | 55 'SearchResultKind.DECLARATION'); |
| 59 } | 56 } |
| 60 } | 57 } |
| OLD | NEW |