.replaceAll(" ", "").replaceAll("\\\t", ""));
}
public void testOtherMethods() throws Exception {
String tsSource = "/org/apache/cxf/tools/common/toolspec/parser/resources/testtool.xml";
ToolSpec toolspec = new ToolSpec(getClass().getResourceAsStream(tsSource), false);
CommandLineParser commandLineParser = new CommandLineParser(null);
commandLineParser.setToolSpec(toolspec);
CommandDocument commandDocument = commandLineParser.parseArguments("-r unknown");
assertTrue(commandDocument != null);
}