Unit Testing Equals and HashCode of Java Beans
We've been creating several Java Beans that have an imperative need to have both equals and hashCode working correctly. To do this, we started off writing a series of test cases which made sure that for every field we exposed that the objects were / were not equal based on if the field was set, and that the field was taken into account as part of the hashCode calculation. After doing two of these, I figured there had to be a better way, and after some research, ended up writing a BeanTestCase class which exposes an assertMeetsEqualsContract method and an assertMeetsHashCodeContract method. Note that while there are projects out there (like Assertion Extensions for JUnit) that have assertions for equals and hashCode, they don't actually walk the fields of the objects and test the various scenarios of changing each field.
After I had written this, I applied it to classes we already had unit tests for around equals and hashCode - and immediately found a bug in one of the classes where we missed a field. That paid for itself right away. ;)
Being that I'm just getting back into the Java world, if there are better ways, please let me know!
- Download BeanTestCase.java




0 Comments:
Post a Comment
Links to this post:
Create a Link
<< Home