I have two xml files like this:
<personlist>
<person>
<name>Test</name>
</person>
<person>
<name>Test2</name>
</person>
</personlist>
and this
<personlist>
<person>
<name>Test</name>
</person>
</personlist>
I know want to use XMLUnit
to get the difference between these two xml files.
Is there a way that XMLUnit
shows me what nodes are added or removed?
If I compare the xml files i want a result like:
1 person node removed