| Index: pkg/analysis_server/test/services/completion/imported_reference_contributor_test.dart
|
| diff --git a/pkg/analysis_server/test/services/completion/imported_reference_contributor_test.dart b/pkg/analysis_server/test/services/completion/imported_reference_contributor_test.dart
|
| index a50ff5f0dd350a32948437edb520484c4b19c866..36525d2b3d11cab817f591c8a829e77c6b051e53 100644
|
| --- a/pkg/analysis_server/test/services/completion/imported_reference_contributor_test.dart
|
| +++ b/pkg/analysis_server/test/services/completion/imported_reference_contributor_test.dart
|
| @@ -337,46 +337,6 @@ class ImportedReferenceContributorTest extends AbstractSelectorSuggestionTest {
|
| });
|
| }
|
|
|
| - test_doc_class() {
|
| - addSource(
|
| - '/libA.dart',
|
| - r'''
|
| -library A;
|
| -/// My class.
|
| -/// Short description.
|
| -///
|
| -/// Longer description.
|
| -class A {}
|
| -''');
|
| - addTestSource('import "/libA.dart"; main() {^}');
|
| - return computeFull((bool result) {
|
| - assertSuggestClass('A',
|
| - docSummaryMatcher: 'My class.\nShort description.',
|
| - docCompleteMatcher:
|
| - 'My class.\nShort description.\n\nLonger description.');
|
| - });
|
| - }
|
| -
|
| - test_doc_function() {
|
| - addSource(
|
| - '/libA.dart',
|
| - r'''
|
| -library A;
|
| -/// My function.
|
| -/// Short description.
|
| -///
|
| -/// Longer description.
|
| -int myFunc() {}
|
| -''');
|
| - addTestSource('import "/libA.dart"; main() {^}');
|
| - return computeFull((bool result) {
|
| - assertSuggestFunction('myFunc', 'int',
|
| - docSummaryMatcher: 'My function.\nShort description.',
|
| - docCompleteMatcher:
|
| - 'My function.\nShort description.\n\nLonger description.');
|
| - });
|
| - }
|
| -
|
| test_enum() {
|
| addSource('/libA.dart', 'library A; enum E { one, two }');
|
| addTestSource('import "/libA.dart"; main() {^}');
|
|
|