Is it possible to skip validation of columns in DBUnit?
I prefer to use FlatXmlDataSet
because it is easier to maintain. But for comparing the result I have to use XmlDataSet
which has always all columns behind the table tag.
The Assertion
method assertEqualsIgnoreCols
might be a solution because it allows me to specify columns to ignore but there are to many columns and I do not want to add them all manually. :-(