IS there a way to compare all tags in two xml ? I'm using xmlunit2.3 to do some other stuff.
Example : XML1 :
<A>
<a>
<b>
</A>
<B>
<a>
<b>
<c>
</B>
Size of XML1 = 9
XML2 :
<A>
<a>
<b>
</A>
<B>
<a>
<b>
</B>
Size of XML2 = 8
Thanks in advance
IS there a way to compare all tags in two xml ? I'm using xmlunit2.3 to do some other stuff.
Example : XML1 :
<A>
<a>
<b>
</A>
<B>
<a>
<b>
<c>
</B>
Size of XML1 = 9
XML2 :
<A>
<a>
<b>
</A>
<B>
<a>
<b>
</B>
Size of XML2 = 8
Thanks in advance
This check has to be done in the XMLParser you are using, either your own or a existing. The XML language does support it.