I have a test suite in which there are many test classes each one having many tests. Now if I define
+ (void)tearDown
in any class, then it will be run after all the tests of that class only. and
- (void)tearDown
will be run after each test. I want to define a tearDown method and want it to be run after all the tests of all the classes. Fox eg, if I have 5 classes each having 7 tests each. So I want to run this tearDown function after all the 35 tests.