I have a few unit tests where I need to make sure that XML generated by a method contains the same elements/values as an expected Xml document.
I used xmlunit in Java, and although they have a .net version it doesn't seem to support namespaces. Are there any alternatives within .net for doing this?
As long as I can just compare 2 Xml strings and get a true/false result to tell me if they match as far as the data contained is concerned I am happy...