Skip to content
Advertisement

How do I compare Integer and Long types with Junit?

How do I compare Integer and Long types with Junit ?

The result of assertThat(poiList.get(0).get("id_pk")).isEqualTo(member.getId_pk()); is:

JavaScript

The two types are:

JavaScript
JavaScript

How can I compare 1 and 1L to be equal?

best regards

Advertisement

Answer

You can convert Integer to Long via java.lang.Integer#longValue:

JavaScript

BUT beware of Null pointers, if poiList.get(0).get("id_pk") is null then a Null Pointer Exception will be thrown!

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement