blob: 3e1b403d27992e941f18fe69b1f986372996487c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
package translators
import org.jetbrains.dokka.base.testApi.testRunner.BaseAbstractTest
import org.jetbrains.dokka.links.DRI
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
import utils.JavaCode
class Bug1341 : BaseAbstractTest() {
@JavaCode
@Test
fun `reproduce bug #1341`() {
val configuration = dokkaConfiguration {
sourceSets {
sourceSet {
sourceRoots = listOf("src")
analysisPlatform = "jvm"
}
}
}
testInline(
"""
/src/com/sample/OtherClass.kt
package com.sample
class OtherClass internal constructor() {
internal annotation class CustomAnnotation
}
/src/com/sample/ClassUsingAnnotation.java
package com.sample
public class ClassUsingAnnotation {
@OtherClass.CustomAnnotation
public int doSomething() {
return 1;
}
}
""".trimIndent(),
configuration
) {
this.documentablesMergingStage = { module ->
assertEquals(DRI("com.sample"), module.packages.single().dri)
}
}
}
}
|