views:

107

answers:

1

I'm planning to write couple applications for iPhone and wonder if there are any Unit Testing and Code Coverage Frameworks for Objective-C?

+3  A: 

For unit testing iPhone apps there is OCTest or Googles iPhoneUnitTesting

For a mocking framework you can use OCMock. Here is the guide to getting it to work with the iPhone.

GCov can be used for code coverage.

Mongus Pong