I have a JAVA class NoName whose objects have the method getProperties(). This method returns an Array of Property. When I now have two instances of NoName, how can I use assertEquals to check whether both instances' Property-Arrays are the same?
_assertEquals(inst.getProperties(), ance.getProrties())_
won't do the job, because it's deprecated.
And since the NoName class is a library class I cannot overwrite equals() (which seems to be the usual solution for this kind of problem, as far as I read until now).
Thanks in advance.