Suppose you have a method like
public Something copy () {
return new Something();
}
In your jUnit, you have
Something s1 = new Something();
Something s2 = s1.copy()
Other then
assertTrue (s1 != s2);
assertTrue (s2 != null);
assertTrue (s1.toString().equals(s2.toString)));
Is there any additional way you can confirm that a NEW reference is returned by a copy()?