| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.dart.inherited_computer_test; | 5 library test.services.completion.dart.inherited_computer_test; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart' | 7 import 'package:analysis_server/plugin/protocol/protocol.dart' |
| 8 hide Element, ElementKind; | 8 hide Element, ElementKind; |
| 9 import 'package:analysis_server/src/provisional/completion/completion_dart.dart'
; | 9 import 'package:analysis_server/src/provisional/completion/dart/completion_dart.
dart'; |
| 10 import 'package:analysis_server/src/services/completion/dart/inherited_contribut
or.dart'; | 10 import 'package:analysis_server/src/services/completion/dart/inherited_contribut
or.dart'; |
| 11 import 'package:analysis_server/src/services/completion/dart_completion_manager.
dart' | 11 import 'package:analysis_server/src/services/completion/dart_completion_manager.
dart' |
| 12 hide DartCompletionContributor; | 12 hide DartCompletionContributor; |
| 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 14 import 'package:unittest/unittest.dart'; | 14 import 'package:unittest/unittest.dart'; |
| 15 | 15 |
| 16 // import '../../../utils.dart'; | |
| 17 import 'completion_contributor_util.dart'; | 16 import 'completion_contributor_util.dart'; |
| 18 | 17 |
| 19 main() { | 18 main() { |
| 20 // Revisit this contributor and these tests | 19 // Revisit this contributor and these tests |
| 21 // once DartChangeBuilder API has solidified. | 20 // once DartChangeBuilder API has solidified. |
| 22 // initializeTestEnvironment(); | 21 // initializeTestEnvironment(); |
| 23 // defineReflectiveTests(InheritedContributorTest); | 22 // defineReflectiveTests(InheritedContributorTest); |
| 24 } | 23 } |
| 25 | 24 |
| 26 @reflectiveTest | 25 @reflectiveTest |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 '/myLib.dart', | 62 '/myLib.dart', |
| 64 ''' | 63 ''' |
| 65 library myLib; | 64 library myLib; |
| 66 part '$testFile' | 65 part '$testFile' |
| 67 part '/otherPart.dart' | 66 part '/otherPart.dart' |
| 68 class A { | 67 class A { |
| 69 A suggested1(int x) => null; | 68 A suggested1(int x) => null; |
| 70 B suggested2(String y) => null; | 69 B suggested2(String y) => null; |
| 71 } | 70 } |
| 72 '''); | 71 '''); |
| 73 addSource( | 72 addSource( |
| 74 '/otherPart.dart', | 73 '/otherPart.dart', |
| 75 ''' | 74 ''' |
| 76 part of myLib; | 75 part of myLib; |
| 77 class B extends A { | 76 class B extends A { |
| 78 B suggested2(String y) => null; | 77 B suggested2(String y) => null; |
| 79 C suggested3([String z]) => null; | 78 C suggested3([String z]) => null; |
| 80 } | 79 } |
| 81 '''); | 80 '''); |
| 82 addTestSource(r''' | 81 addTestSource(r''' |
| 83 part of myLib; | 82 part of myLib; |
| 84 class C extends B { | 83 class C extends B { |
| 85 sugg^ | 84 sugg^ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 113 expect(cs.relevance, equals(DART_RELEVANCE_HIGH)); | 112 expect(cs.relevance, equals(DART_RELEVANCE_HIGH)); |
| 114 expect(cs.importUri, null); | 113 expect(cs.importUri, null); |
| 115 // expect(cs.selectionOffset, equals(completion.length)); | 114 // expect(cs.selectionOffset, equals(completion.length)); |
| 116 // expect(cs.selectionLength, equals(0)); | 115 // expect(cs.selectionLength, equals(0)); |
| 117 expect(cs.isDeprecated, isFalse); | 116 expect(cs.isDeprecated, isFalse); |
| 118 expect(cs.isPotential, isFalse); | 117 expect(cs.isPotential, isFalse); |
| 119 expect(cs.element, isNotNull); | 118 expect(cs.element, isNotNull); |
| 120 return cs; | 119 return cs; |
| 121 } | 120 } |
| 122 } | 121 } |
| OLD | NEW |