vote up 2 vote down star

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?

flag

70% accept rate
1  
How would this class know whether at a certain point of the object graphs it can accept identical objects, or only the same references? – Zed Sep 19 at 17:20
Ideally it'll be configurable enough :) I'm looking for something automatic so that if new fields are added (and not cloned) the test can identify them. – Uri Sep 19 at 17:24
2  
What I'm trying to say is that you will need to configure (i.e. implement) the comparisons anyway. So then why not override the equals method in your classes and use that? – Zed Sep 19 at 17:28

5 Answers

vote up 0 vote down

Just found this article with example code.

link|flag
vote up 1 vote down

Unitils has this functionality:

Equality assertion through reflection, with different options like ignoring Java default/null values and ignoring order of collections

link|flag
vote up 5 vote down

Apache commons-lang has a reflection based equals builder documented here: http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/EqualsBuilder.html

link|flag
vote up 1 vote down

I am usin XStream:

/**
 * @see java.lang.Object#equals(java.lang.Object)
 */
@Override
public boolean equals(Object o) {
	XStream xstream = new XStream();
	String oxml = xstream.toXML(o);
	String myxml = xstream.toXML(this);

	return myxml.equals(oxml);
}

/**
 * @see java.lang.Object#hashCode()
 */
@Override
public int hashCode() {
	XStream xstream = new XStream();
	String myxml = xstream.toXML(this);
	return myxml.hashCode();
}
link|flag
vote up 0 vote down

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.

link|flag
The problem is that I want to automate testing this for a large existing codebase that I didn't write... :) – Uri Sep 30 at 14:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.