Roman Kagan
Roman Kagan

Reputation: 10626

Unit Testing and Code Coverage Frameworks for Objective-C?

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

Answers (1)

Mongus Pong
Mongus Pong

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

Related Questions