| 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.services.completion.manager; | 5 library test.services.completion.manager; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/services/completion/completion_manager.dart'
; | 7 import 'package:analysis_server/src/services/completion/completion_manager.dart'
; |
| 8 import 'package:analysis_server/src/services/completion/dart_completion_manager.
dart'; | 8 import 'package:analysis_server/src/services/completion/dart_completion_manager.
dart'; |
| 9 import 'package:analyzer/src/generated/source.dart'; |
| 10 import 'package:unittest/unittest.dart'; |
| 11 |
| 9 import '../../abstract_context.dart'; | 12 import '../../abstract_context.dart'; |
| 10 import '../../reflective_tests.dart'; | 13 import '../../reflective_tests.dart'; |
| 11 import 'package:analyzer/src/generated/source.dart'; | |
| 12 import 'package:unittest/unittest.dart'; | |
| 13 | 14 |
| 14 main() { | 15 main() { |
| 15 groupSep = ' | '; | 16 groupSep = ' | '; |
| 16 runReflectiveTests(CompletionManagerTest); | 17 runReflectiveTests(CompletionManagerTest); |
| 17 } | 18 } |
| 18 | 19 |
| 19 @ReflectiveTestCase() | 20 @ReflectiveTestCase() |
| 20 class CompletionManagerTest extends AbstractContextTest { | 21 class CompletionManagerTest extends AbstractContextTest { |
| 21 var perf = new CompletionPerformance(); | 22 var perf = new CompletionPerformance(); |
| 23 var cache = null; |
| 22 | 24 |
| 23 test_dart() { | 25 test_dart() { |
| 24 Source source = addSource('/does/not/exist.dart', ''); | 26 Source source = addSource('/does/not/exist.dart', ''); |
| 25 var manager = CompletionManager.create(context, source, 0, null, perf); | 27 var manager = |
| 28 new CompletionManager.create(context, source, 0, null, cache, perf); |
| 26 expect(manager.runtimeType, DartCompletionManager); | 29 expect(manager.runtimeType, DartCompletionManager); |
| 27 } | 30 } |
| 28 | 31 |
| 29 test_html() { | 32 test_html() { |
| 30 Source source = addSource('/does/not/exist.html', ''); | 33 Source source = addSource('/does/not/exist.html', ''); |
| 31 var manager = CompletionManager.create(context, source, 0, null, perf); | 34 var manager = |
| 35 new CompletionManager.create(context, source, 0, null, cache, perf); |
| 32 expect(manager.runtimeType, NoOpCompletionManager); | 36 expect(manager.runtimeType, NoOpCompletionManager); |
| 33 } | 37 } |
| 34 | 38 |
| 35 test_null_context() { | 39 test_null_context() { |
| 36 Source source = addSource('/does/not/exist.dart', ''); | 40 Source source = addSource('/does/not/exist.dart', ''); |
| 37 var manager = CompletionManager.create(null, source, 0, null, perf); | 41 var manager = |
| 42 new CompletionManager.create(null, source, 0, null, cache, perf); |
| 38 expect(manager.runtimeType, NoOpCompletionManager); | 43 expect(manager.runtimeType, NoOpCompletionManager); |
| 39 } | 44 } |
| 40 | 45 |
| 41 test_other() { | 46 test_other() { |
| 42 Source source = addSource('/does/not/exist.foo', ''); | 47 Source source = addSource('/does/not/exist.foo', ''); |
| 43 var manager = CompletionManager.create(context, source, 0, null, perf); | 48 var manager = |
| 49 new CompletionManager.create(context, source, 0, null, cache, perf); |
| 44 expect(manager.runtimeType, NoOpCompletionManager); | 50 expect(manager.runtimeType, NoOpCompletionManager); |
| 45 } | 51 } |
| 46 } | 52 } |
| OLD | NEW |