I have a number of test cases in JUnit. All of them need the same code to be executed in their @BeforeClass static method. It's a code duplication and I'm trying to get rid of it. A dirty way of doing this is by inheritance. Are there any other mechanisms in JUnit, that may help?
|
If the method is some kind of utility, then separate it out to a different class with a static method and call that method in your @BeforeClass. I emphasize on the fact that don't use inheritance just because it solves your problem, use it when doing so creates sense in your class hierarchy. |
||||
|
|
|
There is absolutely nothing wrong with inheritance in this case, it's actually the only way to avoid repeating this code in each subclass. The fact that @BeforeClass methods have to be declared static in JUnit is unfortunate, but that shouldn't stop you. Extend the class and you have the initialization code automatically run for you without having to do anything. |
|||
|
|
|
Static methods aren't inherited, so inheritance isn't an option by default. If you mean you're moving the method to a common parent class, then that seems a poor choice since you only get one parent in Java. A test support class of some sort would seem more appropriate. It's also possible that you're seeing a need for a parameterized test. |
|||
|
|
|
You may create test runner
|
|||
|
|
|
If each and every class needs to have a |
|||
|
|
|
I think if the classes has "is-a" relation, inheritance is reasonable. If the base class is |
|||
|
|
|
Depending on the nature of the setup code, you can potentially put all your tests in a test suite and have the setup code run there. The downside to this is that you cannot run tests individually (since the test depends on the setup code). |
|||
|
|
|
It is test code, and it is not meant for heavy re-use. Do not over-engineer. Do not apply all the design patterns that you know. For test code, the rules are different. |
|||
|
|
@BeforeClassesexactly the same or do they just share some code? – Ray Toal Jul 16 '11 at 4:23