I'm trying to write unit tests for a variety of clone() operations inside a large project and I'm wondering if there is an existing class somewhere that is capable of taking two objects of the same type, doing a deep comparison, and saying if they're identical or not?
|
|
|||||||||||
|
|
|
Just found this article with example code. |
||
|
|
|
|
Unitils has this functionality:
|
||
|
|
|
|
Apache commons-lang has a reflection based equals builder documented here: http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/EqualsBuilder.html |
||
|
|
|
|
I am usin XStream:
|
||
|
|
|
|
I guess you know this, but In theory, you're supposed to always override .equals to assert that two objects are truly equal. This would imply that they check the overridden .equals methods on their members. This kind of thing is why .equals is defined in Object. If this were done consistently you wouldn't have a problem. |
||
|
