0

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.

Kb.
  • 7,240
  • 13
  • 56
  • 75

1 Answers1

1

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
  • 107,306
  • 24
  • 181
  • 206