aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-01-13 16:19:42 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-01-13 16:19:42 +0100
commit1ce5373a1f6c99d01db2156a833fcd796ef53e27 (patch)
tree33838d7b0e8b8c720fcebc2119c5527b76f73179 /test/src/format
parentd33f5b8d4268e3b3ea318faeb4b5c63a0b7b71fd (diff)
downloaddokka-1ce5373a1f6c99d01db2156a833fcd796ef53e27.tar.gz
dokka-1ce5373a1f6c99d01db2156a833fcd796ef53e27.tar.bz2
dokka-1ce5373a1f6c99d01db2156a833fcd796ef53e27.zip
code review and fix tests on Windows build agents
Diffstat (limited to 'test/src/format')
-rw-r--r--test/src/format/MarkdownFormatTest.kt7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt
index 1b8b1cc0..a5a62e13 100644
--- a/test/src/format/MarkdownFormatTest.kt
+++ b/test/src/format/MarkdownFormatTest.kt
@@ -2,8 +2,6 @@ package org.jetbrains.dokka.tests
import org.junit.Test
import org.jetbrains.dokka.*
-import java.io.File
-import kotlin.test.assertEquals
public class MarkdownFormatTest {
private val markdownService = MarkdownFormatService(InMemoryLocationService, KotlinLanguageService())
@@ -52,8 +50,9 @@ public class MarkdownFormatTest {
markdownService.appendNodes(tempLocation, output, model.members.single().members)
}
verifyOutput("test/data/format/enumClass.kt", ".value.md") { model, output ->
- val documentationNode = model.members.single()
- markdownService.appendNodes(tempLocation, output, listOf(documentationNode.members[0].members[1]))
+ val enumClassNode = model.members.single().members[0]
+ markdownService.appendNodes(tempLocation, output,
+ enumClassNode.members.filter { it.name == "LOCAL_CONTINUE_AND_BREAK" })
}
}
}