diff options
Diffstat (limited to 'test/src/model/CommentTest.kt')
-rw-r--r-- | test/src/model/CommentTest.kt | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/src/model/CommentTest.kt b/test/src/model/CommentTest.kt index 5fc95726..51bcc735 100644 --- a/test/src/model/CommentTest.kt +++ b/test/src/model/CommentTest.kt @@ -125,32 +125,6 @@ public class CommentTest { } } - Test fun sectionOnOneLine() { - verifyModel("test/data/comments/sectionOnOneLine.kt") { model -> - with(model.members.single().members.single()) { - assertEquals("Summary", content.summary.toTestString()) - assertEquals(2, content.sections.count()) - with (content.sections["one"]!!) { - assertEquals("one", label) - assertEquals("same line", toTestString()) - } - } - } - } - - Test fun emptySectionOnOneLine() { - verifyModel("test/data/comments/emptySectionOnOneLine.kt") { model -> - with(model.members.single().members.single()) { - assertEquals("Summary", content.summary.toTestString()) - assertEquals(2, content.sections.count()) - with (content.sections["one"]!!) { - assertEquals("one", label) - assertEquals("", toTestString()) - } - } - } - } - Test fun multilineSection() { verifyModel("test/data/comments/multilineSection.kt") { model -> with(model.members.single().members.single()) { |