There is no built-in way to annotate tests in OCUnit (SenTestingKit).
One approach is to change the name of the test method. I add "XXX" to the beginning of the test, which I want to disable, but want it to continue compiling. For example,
- (void)XXXtestSomething
Then I can find "XXXtest" to find all disabled test methods.
Jon reid
source share