diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-02 19:50:04 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-11-02 19:50:04 +0300 |
commit | b64579c6d444a39882ceeef08bdc3eedb584e827 (patch) | |
tree | 2cb0eacd445bffa64f38e3a744db4e2334aea1c6 /core/src/test/kotlin/model | |
parent | 8c7ba164d96b8b5018b2eb5ec0717de29c44b172 (diff) | |
download | dokka-b64579c6d444a39882ceeef08bdc3eedb584e827.tar.gz dokka-b64579c6d444a39882ceeef08bdc3eedb584e827.tar.bz2 dokka-b64579c6d444a39882ceeef08bdc3eedb584e827.zip |
Added test and post-review fix
Diffstat (limited to 'core/src/test/kotlin/model')
-rw-r--r-- | core/src/test/kotlin/model/LinkTest.kt | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/core/src/test/kotlin/model/LinkTest.kt b/core/src/test/kotlin/model/LinkTest.kt index 1c206467..6b72525f 100644 --- a/core/src/test/kotlin/model/LinkTest.kt +++ b/core/src/test/kotlin/model/LinkTest.kt @@ -1,8 +1,10 @@ package org.jetbrains.dokka.tests +import org.jetbrains.dokka.ContentBlock +import org.jetbrains.dokka.ContentNodeLazyLink import org.jetbrains.dokka.NodeKind -import org.junit.Test import org.junit.Assert.assertEquals +import org.junit.Test class LinkTest { @Test fun linkToSelf() { @@ -55,4 +57,19 @@ class LinkTest { } } + @Test fun linkToPackage() { + verifyModel("testdata/links/linkToPackage.kt") { model -> + val packageNode = model.members.single() + with(packageNode) { + assertEquals(this.name, "test.magic") + } + with(packageNode.members.single()) { + assertEquals("Magic", name) + assertEquals(NodeKind.Class, kind) + assertEquals("Basic implementations of [Magic -> Class:Magic] are located in [test.magic -> Package:test.magic] package", content.summary.toTestString()) + assertEquals(packageNode, ((this.content.summary as ContentBlock).children.filterIsInstance<ContentNodeLazyLink>().last()).lazyNode.invoke()) + } + } + } + }
\ No newline at end of file |