| Index: pkg/analyzer/test/src/summary/summary_common.dart
|
| diff --git a/pkg/analyzer/test/src/summary/summary_common.dart b/pkg/analyzer/test/src/summary/summary_common.dart
|
| index 7f362aebbdf6f4d851fecfa98c93d5e56096e920..9d51fd8ac16240f4b869bb18d075a568bda363c2 100644
|
| --- a/pkg/analyzer/test/src/summary/summary_common.dart
|
| +++ b/pkg/analyzer/test/src/summary/summary_common.dart
|
| @@ -1303,6 +1303,19 @@ class C {}''';
|
| checkDocumentationComment(cls.documentationComment, text);
|
| }
|
|
|
| + test_class_documented_tripleSlash() {
|
| + if (!includeInformative) return;
|
| + String text = '''
|
| +/// aaa
|
| +/// bbbb
|
| +/// cc
|
| +class C {}''';
|
| + UnlinkedClass cls = serializeClassText(text);
|
| + UnlinkedDocumentationComment comment = cls.documentationComment;
|
| + expect(comment, isNotNull);
|
| + expect(comment.text, '/// aaa\n/// bbbb\n/// cc');
|
| + }
|
| +
|
| test_class_documented_with_references() {
|
| if (!includeInformative) return;
|
| String text = '''
|
|
|