How do I trap OCUnit test pass/failure messages/events. - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T04:49:54Zhttp://stackoverflow.com/feeds/question/247607http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247607/how-do-i-trap-ocunit-test-pass-failure-messages-events4How do I trap OCUnit test pass/failure messages/events.orj2008-10-29T17:05:03Z2009-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#3296744Answer by superfell for How do I trap OCUnit test pass/failure messages/events.superfell2008-12-01T00:25:34Z2009-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>