views:

153

answers:

2

When developing iPhone apps with Xcode 3.2.1/Objective C, which unit test tools are recommended?
I am new to the iPhone OS platform, and I am interested in your best practices.

+1  A: 

Take a look at this question http://stackoverflow.com/questions/159280/do-ocunit-and-ocmock-work-on-the-iphone-sdk

Shaji
@Shaji: +1 This was useful
Kb
+1  A: 

The recommended testing frameork is OCUnit, which ships with Xcode. You will also find that the Google Toolbox for Mac has a great many useful tools for testing OS X and iPhone applications, including UI testing on both platforms.

For mock objects, I personally recommend OCMock.

Barry Wark
+1 thank you for your answer.
Kb