How do I assert that two HashMap with Javabean values are equal?

后端 未结 8 1268
一整个雨季
一整个雨季 2021-02-13 18:45

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

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-13 19:33

    I found the keySet method of the map class useful

            assertEquals(map1.keySet(), map2.keySet());
    

提交回复
热议问题