← Prev in month ← Prev in thread

what is the meaning of similar in xmlUnit

From
Li Yuejiong(John) <>
To
Date
2005-08-04T13:48:44Z
ID
<>
Thread
what is the meaning of similar in xmlUnit
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
← Prev in month ← Prev in thread