[Home] [By Thread] [By Date] [Recent Entries]
Hi, In xmlUnit calss XmlTestCase, there are functions named assertXMLEqual which assert that two XML documents are similar. According the description of function similar in class Diff, "two documents are considered to be "similar" if they contain the same elements and attributes regardless of order. " I construct two xml files, ============================ <?xml version="1.0"?> <xbrl> <context id="Current_AsOf"/> <context id="Current_ForPeriod"/> </xbrl> ============================ <?xml version="1.0"?> <xbrl> <context id="Current_ForPeriod"/> <context id="Current_AsOf"/> </xbrl> ============================ In my application, these two xml files are equal. But when I try to similar them as below, I alwayse get the error message "[different] Expected attribute value 'Current_AsOf' but was 'Current_ForPeriod' - comparing <context id="Current_AsOf"...>" ============== ..... ..... XMLTestCase xmlTestCase = new XMLTestCase(); xmlTestCase.assertXMLEqual(doc01, doc02); ..... ..... ============== What's wrong? Is there any way two compare these two files as equal? Thanks, John
|

Cart



