How do I trap OCUnit test pass/failure messages/events. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:49:54Z http://stackoverflow.com/feeds/question/247607 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events 4 How do I trap OCUnit test pass/failure messages/events. orj 2008-10-29T17:05:03Z 2009-07-10T16:53:05Z <p>I'm trying to use xcodebuild and OCUnit with my Continuous Integration server (<a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>). </p> <p>JetBrains offers test observer implementations for boost::test and CppUnit that format test output in a way that TeamCity can interpret. I need to do something similar for OCUnit if I want to use it.</p> <p>There appears to be a SenTestObserver class in OCUnit but I'm ignorant of how exactly it should be used, and the <a href="http://www.sente.ch/software/ocunit/" rel="nofollow">OCUnit homepage</a> doesn't seem to provide any documentation on the matter.</p> http://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events/329674#329674 4 Answer by superfell for How do I trap OCUnit test pass/failure messages/events. superfell 2008-12-01T00:25:34Z 2009-07-10T16:53:05Z <p>You can write your own observer by extending the SenTestObserver class and implementing the notification listeners</p> <ul> <li>(void) testSuiteDidStart:(NSNotification *) aNotification</li> <li>(void) testSuiteDidStop:(NSNotification *) aNotification</li> <li>(void) testCaseDidStart:(NSNotification *) aNotification</li> <li>(void) testCaseDidStop:(NSNotification *) aNotification</li> <li>(void) testCaseDidFail:(NSNotification *) aNotification</li> </ul> <p>Then add a "<code>SenTestObserverClass</code>" entry to the Info.plist with the name of your class.</p> <p>At least in the version of OCUnit I'm familiar with, SenTestObserver is equal parts useful/broken. I just skip it altogether and register for the notifications myself in my own class. (See SenTestSuiteRun.h and SenTestCaseRun.h for the defines of the notification names).</p> <p>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.</p>