Reputation: 10626
I'm planning to write couple applications for iPhone and wonder if there are any Unit Testing and Code Coverage Frameworks for Objective-C?
Upvotes: 6
Views: 2100
Reputation: 11477
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.
Upvotes: 9