aboutsummaryrefslogtreecommitdiff
path: root/core/src/test
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-01-15 15:39:07 +0100
committerPaweł Marks <pmarks@virtuslab.com>2020-01-15 18:22:40 +0100
commitaca9ac636f97a1eab75eae648a7e5b5c6305b5c7 (patch)
tree1c29b01ee044443bc47cb1fd06323f9531c530be /core/src/test
parentc1cff90ea678622c2d489fe9fe752160bed724f8 (diff)
downloaddokka-aca9ac636f97a1eab75eae648a7e5b5c6305b5c7.tar.gz
dokka-aca9ac636f97a1eab75eae648a7e5b5c6305b5c7.tar.bz2
dokka-aca9ac636f97a1eab75eae648a7e5b5c6305b5c7.zip
Information about generics and nullability is no longer lost
also removed obsolete and commented tests
Diffstat (limited to 'core/src/test')
-rw-r--r--core/src/test/kotlin/dri/DRITest.kt74
1 files changed, 0 insertions, 74 deletions
diff --git a/core/src/test/kotlin/dri/DRITest.kt b/core/src/test/kotlin/dri/DRITest.kt
deleted file mode 100644
index 911e49bf..00000000
--- a/core/src/test/kotlin/dri/DRITest.kt
+++ /dev/null
@@ -1,74 +0,0 @@
-package org.jetbrains.dokka.tests.dri
-
-import org.jetbrains.dokka.links.Callable
-import org.jetbrains.dokka.links.TypeReference
-import org.jetbrains.dokka.links.DRI
-import org.jetbrains.dokka.resolvers.toJavadocLocation
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class DRITest {
-// @Test
-// fun onlyClassNames() {
-// val expected = DRI(classNames = "className1.className2")
-// val actual = DRI.from("/className1.className2////")
-// assertEquals(expected, actual)
-// }
-
-// @Test
-// fun fullDRI() {
-// val expected = DRI("org.dokka", "className1.className2", Callable("<init>", "", listOf("Int")), 2, "something")
-// val actual = DRI.from("org.dokka/className1.className2/<init>/..Int/2/something")
-// assertEquals(expected, actual)
-// }
-
-// @Test
-// fun onlyExtra() {
-// val expected = DRI(null, null, null, null, "extra")
-// val actual = DRI.from("/////extra")
-// assertEquals(expected, actual)
-// }
-//
-// @Test
-// fun javadoc8Location() {
-// val dri = DRI("org.jetbrains.dokka", "DRITest", "javadocLocation", ".void.")
-// assertEquals("org/jetbrains/dokka/DRITest.html#javadocLocation--", dri.toJavadocLocation(8))
-// }
-//
-// @Test
-// fun parseDRI() {
-// val toParse =
-// "example//baz/example.Foo[kotlin.Comparable[*],[kotlin.collections.List[example.ReBarBar],kotlin.Comparable[*]]]#[kotlin.collections.List[example.ReBarBar],kotlin.Comparable[*]]//"
-// val dri = DRI(
-// "example",
-// "",
-// Callable(
-// "baz",
-// TypeReference(
-// "example.Foo", listOf(
-// TypeReference("kotlin.Comparable", listOf(TypeReference.starProjection)),
-// TypeReference(
-// "", listOf(
-// TypeReference("kotlin.collections.List", listOf(TypeReference("example.ReBarBar"))),
-// TypeReference("kotlin.Comparable", listOf(TypeReference.starProjection))
-// )
-// )
-// )
-// ),
-// listOf(
-// TypeReference(
-// "",
-// listOf(
-// TypeReference("kotlin.collections.List", listOf(TypeReference("example.ReBarBar"))),
-// TypeReference("kotlin.Comparable", listOf(TypeReference.starProjection))
-// )
-//
-// )
-// )
-// )
-// )
-// assertEquals(dri.toString(), DRI.from(toParse).toString())
-// }
-}
-
-