I have two HashMap
maps that I would like to compare. Question
in this case is a Javabean I have written.
How do I ass
Here is the solution I eventually ended up using which worked perfectly for unit testing purposes.
for(Map.Entry entry : questionMap.entrySet()) {
assertReflectionEquals(entry.getValue(), expectedQuestionMap.get(entry.getKey()), ReflectionComparatorMode.LENIENT_ORDER);
}
This involves invoking assertReflectionEquals()
from the unitils
package.
org.unitils
unitils-core
3.3
test