olamy commented on code in PR #337: URL: https://github.com/apache/maven-javadoc-plugin/pull/337#discussion_r1845726799
########## src/test/java/org/apache/maven/plugins/javadoc/JavadocUtilTest.java: ########## @@ -675,4 +680,23 @@ private void stopSilently(Server server) { // ignored } } + + public void testQuotedArgument() throws Exception { + + String value = " org.apache.uima.analysis_component:\n org.apache.uima.analysis_engine\n"; + + String arg = JavadocUtil.quotedArgument(value); + assertThat(arg).isEqualTo("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'"); Review Comment: done via 74b03e61bbe839f1ab08f8ceb8594e1a6052a37f -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org