diff options
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/model/CommentTest.kt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/src/model/CommentTest.kt b/test/src/model/CommentTest.kt index 51bcc735..2d87b928 100644 --- a/test/src/model/CommentTest.kt +++ b/test/src/model/CommentTest.kt @@ -30,15 +30,6 @@ public class CommentTest { } } - Test fun multipleDocs() { - verifyModel("test/data/comments/multipleDocs.kt") { model -> - with(model.members.single().members.single()) { - assertEquals("doc1", content.summary.toTestString()) - assertEquals("doc2\ndoc3", content.description.toTestString()) - } - } - } - Test fun multilineDocWithComment() { verifyModel("test/data/comments/multilineDocWithComment.kt") { model -> with(model.members.single().members.single()) { |