I have two HashMap maps that I would like to compare. Question in this case is a Javabean I have written.
HashMap
Question
How do I ass
I found the keySet method of the map class useful
assertEquals(map1.keySet(), map2.keySet());