I am currently working with XMLUnit and I am wondering if there is way to configure it to ignore only the id attribute of the tags I want to compare.
Thanks in advance for your help.
|
|
The solution is quite simple. You can configure your
The required thing here is to check whether the attribute name is "id". Standard Java DOM functionality could help. But I prefer to do this by the means of regular expressions:
P.S. See also: http://xmlunit.sourceforge.net/api/org/custommonkey/xmlunit/Difference.html |
||||
|
|
|
I am gonna try to implement my own DifferenceListener to handle this need (see this post). Gonna post the result soon. It seems to work, gonna post the implementation tomorrow. |
|||||
|