From 1e862f2fc05c9d01d4d9c00de5d1a4235ff85a9d Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 9 Sep 2015 14:54:19 +0200 Subject: render annotations with @; render only @MustBeDocumented annotations; render all modifiers --- test/src/format/MarkdownFormatTest.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/src/format') diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt index 059b491b..88003051 100644 --- a/test/src/format/MarkdownFormatTest.kt +++ b/test/src/format/MarkdownFormatTest.kt @@ -1,7 +1,8 @@ package org.jetbrains.dokka.tests +import org.jetbrains.dokka.KotlinLanguageService +import org.jetbrains.dokka.MarkdownFormatService import org.junit.Test -import org.jetbrains.dokka.* public class MarkdownFormatTest { private val markdownService = MarkdownFormatService(InMemoryLocationService, KotlinLanguageService()) @@ -30,7 +31,7 @@ public class MarkdownFormatTest { } } - Test fun annotationParams() { + @Test fun annotationParams() { verifyOutput("test/data/format/annotationParams.kt", ".md") { model, output -> markdownService.appendNodes(tempLocation, output, model.members.single().members) } -- cgit