Does NUnit support (perhaps by using a third party libraries) a smart comparison for xml data.
Let's say we need to compare two xml files - the simplest way would be to compare xml content using the no-case sensitive string comparison, but that would only work in a trivial cases.
Is there any library around which could simplify xml comparison - e.g. some kind of XmlAssert?
The functionality I am after - "having a two xml files, compare these nodes (because they are important) and ignore the rest".