diff options
Diffstat (limited to 'plugins/base/src/test/kotlin/parsers')
-rw-r--r-- | plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt b/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt index f7911c08..b2397b95 100644 --- a/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt +++ b/plugins/base/src/test/kotlin/parsers/JavadocParserTest.kt @@ -436,6 +436,38 @@ class JavadocParserTest : BaseAbstractTest() { } @Test + fun `u tag is handled properly`() { + val source = """ + |/src/main/kotlin/test/Test.java + |package example + | + | /** + | * An example of using u tag: <u>underlined</u> + | */ + | public class Test {} + """.trimIndent() + testInline( + source, + configuration, + ) { + documentablesCreationStage = { modules -> + val docs = modules.first().packages.first().classlikes.single().documentation.first().value + val root = docs.children.first().root + + assertEquals( + listOf( + P(children = listOf( + Text("An example of using u tag: "), + U(children = listOf(Text("underlined"))), + )), + ), + root.children + ) + } + } + } + + @Test fun `undocumented see also from java`(){ testInline( """ |