本文整理匯總了Java中org.custommonkey.xmlunit.XMLUnit.setControlEntityResolver方法的典型用法代碼示例。如果您正苦於以下問題:Java XMLUnit.setControlEntityResolver方法的具體用法?Java XMLUnit.setControlEntityResolver怎麽用?Java XMLUnit.setControlEntityResolver使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.custommonkey.xmlunit.XMLUnit
的用法示例。
在下文中一共展示了XMLUnit.setControlEntityResolver方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ignoresTrailingWhitespace
import org.custommonkey.xmlunit.XMLUnit; //導入方法依賴的package包/類
@Test
public void ignoresTrailingWhitespace() throws Exception {
StringWriter writer = new StringWriter();
Properties log4jProperties = new Properties();
log4jProperties.load(getClass().getClassLoader().getResourceAsStream("log4j.issue5.properties"));
converter.toXml(log4jProperties, writer);
String expected = readFromStream("log4j.issue5.expected.xml");
String actual = writer.toString();
System.out.println(expected);
System.out.println("=============================");
System.out.println(actual);
XMLUnit.setIgnoreWhitespace(true);
XMLUnit.setControlEntityResolver(new Log4JEntityResolver());
XMLUnit.setTestEntityResolver(new Log4JEntityResolver());
Validator validator = new Validator(actual);
validator.assertIsValid();
XMLAssert.assertXMLEqual(expected, actual);
}
示例2: canConvertPropertiesToXmlFormat
import org.custommonkey.xmlunit.XMLUnit; //導入方法依賴的package包/類
@Test
public void canConvertPropertiesToXmlFormat() throws IOException, SAXException {
StringWriter writer = new StringWriter();
Properties log4jProperties = new Properties();
log4jProperties.load(getClass().getClassLoader().getResourceAsStream("log4j.issue4.properties"));
converter.toXml(log4jProperties, writer);
String expected = readFromStream("log4j.issue4.expected.xml");
String actual = writer.toString();
XMLUnit.setIgnoreWhitespace(true);
XMLUnit.setControlEntityResolver(new Log4JEntityResolver());
XMLUnit.setTestEntityResolver(new Log4JEntityResolver());
Validator validator = new Validator(actual);
validator.assertIsValid();
XMLAssert.assertXMLEqual(expected, actual);
}