aboutsummaryrefslogtreecommitdiff
path: root/core/src/test
diff options
context:
space:
mode:
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())
-// }
-}
-
-