diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-08-13 16:24:24 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-17 11:55:35 +0200 |
commit | 43450355b04f52d64da5b29cff3f8fca87445f5b (patch) | |
tree | c88b657c860ed1793c1a0b0a267401bc5b03474c /plugins/base/src/test/kotlin/signatures/SignatureTest.kt | |
parent | 785d741790f653d5c260f59c9d8875bbfde2dc07 (diff) | |
download | dokka-43450355b04f52d64da5b29cff3f8fca87445f5b.tar.gz dokka-43450355b04f52d64da5b29cff3f8fca87445f5b.tar.bz2 dokka-43450355b04f52d64da5b29cff3f8fca87445f5b.zip |
Add tests and add projections to javadoc
Diffstat (limited to 'plugins/base/src/test/kotlin/signatures/SignatureTest.kt')
-rw-r--r-- | plugins/base/src/test/kotlin/signatures/SignatureTest.kt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt index dd3d85c1..d23c45e9 100644 --- a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt +++ b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt @@ -239,6 +239,60 @@ class SignatureTest : AbstractCoreTest() { } } + @Test + fun `class with no supertype`() { + + val configuration = dokkaConfiguration { + sourceSets { + sourceSet { + sourceRoots = listOf("src/main/kotlin/test/Test.kt") + } + } + } + + val source = source("class SimpleClass") + val writerPlugin = TestOutputWriterPlugin() + + testInline( + source, + configuration, + pluginOverrides = listOf(writerPlugin) + ) { + renderingStage = { _, _ -> + writerPlugin.writer.renderedContent("root/example/-simple-class/index.html").firstSignature().match( + "class ", A("SimpleClass"), Span() + ) + } + } + } + + @Test + fun `class with generic supertype`() { + + val configuration = dokkaConfiguration { + sourceSets { + sourceSet { + sourceRoots = listOf("src/main/kotlin/test/Test.kt") + } + } + } + + val source = source("class InheritingClassFromGenericType<T : Number, R : CharSequence> : Comparable<T>, Collection<R>") + val writerPlugin = TestOutputWriterPlugin() + + testInline( + source, + configuration, + pluginOverrides = listOf(writerPlugin) + ) { + renderingStage = { _, _ -> + writerPlugin.writer.renderedContent("root/example/-inheriting-class-from-generic-type/index.html").firstSignature().match( + "class ", A("InheritingClassFromGenericType"), " <", A("T"), " : ", A("Number"), ", ", A("R"), " : ", A("CharSequence"), + "> : ", A("Comparable"), "<", A("T"), "> , ", A("Collection"), "<", A("R"), ">", Span() + ) + } + } + } @Test fun `fun with annotation`() { |