You can write your own observer by extending the SenTestObserver class and implementing the notification listeners
- (void) testSuiteDidStart:(NSNotification *) aNotification
- (void) testSuiteDidStop:(NSNotification *) aNotification
- (void) testCaseDidStart:(NSNotification *) aNotification
- (void) testCaseDidStop:(NSNotification *) aNotification
- (void) testCaseDidFail:(NSNotification *) aNotification
then
Then add an a "SenTestObserverClass" entry to the info.plist SenTestObserverClass Info.plist with the name of your class.
At least in the version of OCUnit i'm I'm familiar with, SenTestObserver is equal parts useful/equal parts brokenuseful/broken. I just skip it altogether and register for the notifications myself in my own class. (see See SenTestSuiteRun.h and SenTestCaseRun.h for the defines of the notification names).
You can use the test and run properties of the notification to access the SenTestSuite and SenTestSuiteRun instances, and the run instance contains the info needed on the actual results.
