When developing Java applications, I often override Object methods (usually equals and hashCode). I would like some way to systematically check that I'm adhering to the contract for Object methods for every one of my classes. For example, I want tests that assert that for equal objects, the hash code is also equal. I'm using the JUnit test framework, so preferably I'd like some JUnit solution where I can automatically generate these tests, or some test case that can somehow visit all of my classes and make sure that the contract is upheld.
I'm using JDK6 and JUnit 4.4.
Just a some initial thoughts on that question (which may explain why there are still no answer after a full hour!? ;)
There seems to be two parts when it comes to implement a solution to the question:
1/ retrieve every classes of my own. Easy, you give a jar name, the Junit test initialization method would:
2/ test every objects
... and therein lies the catch: you have to instantiate those objects, that is create two instances, and use them for equals() tests.
That means if your constructors are taken arguments, you have to consider,
Finally, not every parameters automatically created for those constructor would make sense in a functional way, meaning some of those values will fail to build the instance because of an Assert: that must be detected.
Yet it seems to be possible (you can make it a code-challenge if you want), but I want first let other StackOverflow readers respond to this issue, as they may see a far simpler solution that I am.
To avoid combinations problem and to keep test relevant testing values close to the actual code itself, I would recommend the definition of an dedicated annotation, with a String representing valid values for constructors. There would be located right above the equals() overridden method of one of your object.
Those annotation values would then be read, and the instances created from those would be combined for testing equals(). That would keep the number of combinations down enough
Side-node: a generic JUnit test case would of course check that, for each equals() to tests, there is:
[community post here, no karma involved ;) ]
Here is another code-challenge for you:
One java class, implementing a JUnit test case, with a main method able to launch JUnit on itself!
This class will also:
The test method takes a class name parameter (here: it will be itself), check if the class with that name has an equals() overridden method with "interesting values" annotations.
If it does, it will builds the appropriate instances (of itself) based on the annotations, and test equals()
This is a self-contained test class, which defines a mechanism able to be generalized to any class with an annotated overridden equals() function.
Please Use JDK6 and JUnit4.4
That class should be copied-paste in the appropriate package of an empty java project... and just run ;)
To add some more thought, in response to Nicolas (see comments):
Should annotations representing potential testing data never ever be in the class itself ?... Hey that could be a great question to ask :)