aboutsummaryrefslogtreecommitdiff
path: root/plugins/base
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-07-27 23:42:07 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-08-19 13:34:10 +0200
commitb12d8878aa072e3c71f2a9204040da6bfa3e5a11 (patch)
tree8f04c239bd3028ca096c7c106aa4cb0e188c1c6d /plugins/base
parentfc38ceda06d92978175d37bb7197763539c966a2 (diff)
downloaddokka-b12d8878aa072e3c71f2a9204040da6bfa3e5a11.tar.gz
dokka-b12d8878aa072e3c71f2a9204040da6bfa3e5a11.tar.bz2
dokka-b12d8878aa072e3c71f2a9204040da6bfa3e5a11.zip
Fix tests containing unresolved links
Diffstat (limited to 'plugins/base')
-rw-r--r--plugins/base/src/test/kotlin/signatures/SignatureTest.kt108
1 files changed, 9 insertions, 99 deletions
diff --git a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt
index d23c45e9..1f875a0d 100644
--- a/plugins/base/src/test/kotlin/signatures/SignatureTest.kt
+++ b/plugins/base/src/test/kotlin/signatures/SignatureTest.kt
@@ -8,6 +8,15 @@ import org.junit.jupiter.api.Test
import utils.*
class SignatureTest : AbstractCoreTest() {
+ private val configuration = dokkaConfiguration {
+ sourceSets {
+ sourceSet {
+ sourceRoots = listOf("src/main/kotlin/test/Test.kt")
+ classpath = listOf(commonStdlibPath!!)
+ externalDocumentationLinks = listOf(stdlibExternalDocumentationLink)
+ }
+ }
+ }
fun source(signature: String) =
"""
@@ -19,15 +28,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("fun simpleFun(): String = \"Celebrimbor\"")
val writerPlugin = TestOutputWriterPlugin()
@@ -46,15 +46,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `open fun`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("open fun simpleFun(): String = \"Celebrimbor\"")
val writerPlugin = TestOutputWriterPlugin()
@@ -73,15 +64,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `open suspend fun`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("open suspend fun simpleFun(): String = \"Celebrimbor\"")
val writerPlugin = TestOutputWriterPlugin()
@@ -100,15 +82,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with params`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("fun simpleFun(a: Int, b: Boolean, c: Any): String = \"Celebrimbor\"")
val writerPlugin = TestOutputWriterPlugin()
@@ -129,15 +102,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with function param`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("fun simpleFun(a: (Int) -> String): String = \"Celebrimbor\"")
val writerPlugin = TestOutputWriterPlugin()
@@ -157,15 +121,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with generic param`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("fun <T> simpleFun(): T = \"Celebrimbor\" as T")
val writerPlugin = TestOutputWriterPlugin()
@@ -185,15 +140,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with generic bounded param`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("fun <T : String> simpleFun(): T = \"Celebrimbor\" as T")
val writerPlugin = TestOutputWriterPlugin()
@@ -213,15 +159,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with keywords, params and generic bound`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = source("inline suspend fun <T : String> simpleFun(a: Int, b: String): T = \"Celebrimbor\" as T")
val writerPlugin = TestOutputWriterPlugin()
@@ -296,15 +233,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with annotation`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = """
|/src/main/kotlin/test/Test.kt
|package example
@@ -337,15 +265,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with two annotations`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = """
|/src/main/kotlin/test/Test.kt
|package example
@@ -386,15 +305,6 @@ class SignatureTest : AbstractCoreTest() {
@Test
fun `fun with annotation with array`() {
-
- val configuration = dokkaConfiguration {
- sourceSets {
- sourceSet {
- sourceRoots = listOf("src/main/kotlin/test/Test.kt")
- }
- }
- }
-
val source = """
|/src/main/kotlin/test/Test.kt
|package example