views:

271

answers:

2

Are there any good unit testing and acceptance testing frameworks that can be applied to XCode projects? I'm accustomed to doing TDD in Ruby and Python but am new to Objective-C and XCode.

+2  A: 

Is the built in Cocoa Unit Test Bundle not good enough? Chris Hanson did a series of posts on Unit testing in XCode, and there's the Apple documentation as well..

Stuart Dunkeld
A: 

The popular ASIHTTPRequest library uses GHUnit.

The advantage of using Apple's stuff is that it will improve over time and will have better tool integration, but I'm not sure it's as easy to use currently.

Kendall Helmstetter Gelner