From 89a36e0eed4a31856cca0cedb9b67ce79cee5100 Mon Sep 17 00:00:00 2001 From: Ingo Kegel Date: Mon, 4 Jan 2016 13:36:54 +0100 Subject: Embedded underscores in words like word_with_underscores or single embedded stars like embedded*star were removed in the output. --- core/src/test/kotlin/format/HtmlFormatTest.kt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'core/src/test/kotlin/format') diff --git a/core/src/test/kotlin/format/HtmlFormatTest.kt b/core/src/test/kotlin/format/HtmlFormatTest.kt index 593dbfe6..8045d38c 100644 --- a/core/src/test/kotlin/format/HtmlFormatTest.kt +++ b/core/src/test/kotlin/format/HtmlFormatTest.kt @@ -153,5 +153,11 @@ public class HtmlFormatTest { htmlService.appendNodes(tempLocation, output, model.members.single().members.filter { it.name == "Bar" }) } } + + @Test fun uninterpretedEmphasisCharacters() { + verifyOutput("testdata/format/uninterpretedEmphasisCharacters.kt", ".html") { model, output -> + htmlService.appendNodes(tempLocation, output, model.members.single().members) + } + } } -- cgit