diff options
Diffstat (limited to 'core/src/test/kotlin')
-rw-r--r-- | core/src/test/kotlin/markdown/ParserTest.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/test/kotlin/markdown/ParserTest.kt b/core/src/test/kotlin/markdown/ParserTest.kt index b0ec68ff..e5944e17 100644 --- a/core/src/test/kotlin/markdown/ParserTest.kt +++ b/core/src/test/kotlin/markdown/ParserTest.kt @@ -1,17 +1,17 @@ package org.jetbrains.dokka.tests import org.junit.Test -import org.jetbrains.dokka.toTestString -import org.jetbrains.dokka.parseMarkdown +//import org.jetbrains.dokkatoTestString +//import org.jetbrains.dokka.parseMarkdown import org.junit.Ignore @Ignore public class ParserTest { fun runTestFor(text : String) { println("MD: ---") println(text) - val markdownTree = parseMarkdown(text) +// val markdownTree = parseMarkdown(text) println("AST: ---") - println(markdownTree.toTestString()) +// println(markdownTree.toTestString()) println() } |