I think I have found a bug with XMLConfiguration. When I run the
following test with the following xml the second assertEquals statement
fails:
XML:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<test>
<a name="X">ABC</a>
<a name="Y">1,2,3</a>
</test
TEST:
public void testXMLConfig() throws Exception {
File file = new File("/xml/xmlConfigTest.xml");
XMLConfiguration xmlConfig = new XMLConfiguration(file);
xmlConfig.load();
assertEquals("X",xmlConfig.getProperty("a(0)[EMAIL PROTECTED]"));
assertEquals("Y",xmlConfig.getProperty("a(1)[EMAIL PROTECTED]"));
}
Anyone see this issue before? I couldn't find it in jira.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]