In JUnit, setUp() is called before running "each" test case and tearDown() on completion of the run. But I want to know whether there is method that get called after running "all" test cases in the suite.
I need such a method to insert some instrumentation.