I'm comparing 2 XML using XMLUnit 2.xx both of them have the same structure except for the root node name :
<expectedValue>
<elementA>something</elementA>
<elementB>something else</elementB>
<elementC>yet another thing</elementC>
</expectedValue>
<value>
<elementA>something</elementA>
<elementB>something else</elementB>
<elementC>yet another thing</elementC>
</value>
I'm searching for a way to say to the diffBuilder that expectedValue == value
or eventually just ignore this specific comparison.
Any idea ? Thank you