I have JUnit 4 test classes that all inherit from a common class. This parent class provide services such as minimal tests setup and DB management.
But this parent class is long to execute mainly because my Spring context loading is slow.
Is there any way to execute the code from the parent class only once for all the tests classes that inherit from it?