What frameworks exist to unit test Objective-C code? I would like a framework that integrates nicely with Xcode.
|
Xcode includes OCUnit, an Objective-C unit testing framework, and support for running unit tests (OCUnit or otherwise) as part of your project's build process. Xcode's unit testing support is described in the Xcode Unit Testing Guide. I've written a series of weblog posts about how to perform some common tasks with Xcode unit testing:
Finally, I've written a few posts on how to write tests for Cocoa user interfaces; the way Cocoa is structured makes it relatively straightforward, because you don't have to spin an event loop or anything like that in most cases.
This makes it possible to do test-driven development for not just your model-level code but also your controller-level and even view-level code. |
|||||||||||||||
|
|
Check out GHUnit by Gabriel Handford:
|
|||||||||
|
|
I started using the Google toolbox testing rig for iPhone, and its working out great for me. |
|||
|
|
|
Check out OCUnit. Apple's developer network has a great introduction. |
|||
|
|
|
Note that the Google Toolbox for Mac (GTM) project simply extends/augments Apple's SenTestingKit framework (which is, itself based on OCUnit). As they say on the project site:
Note the following comment about user-interface testing:
See their "Code Verification and Unit Testing" page for instructions on how to use it. |
||||
|
|
|
I came to the conclusion that GHUnit is the most advanced testing framework for Objective-C. I have done a roundup of testing frameworks on my blog. It is the most flexible in terms of deployment (iphone, simulator or mac os native) and assert capabilities. Because it is based on GTM, it inherits all of GTM's advantages over SenTestingKit but also adds a lot more. Another bonus is that it is being maintained very actively. I have conducted effort to integrate OCMock into GHUnit, it works great!. You can get the code on github. |
|||
|
|
|
I would also recommend using coverage tools to see which part of the code are covered with unit tests and which are not. Basic line and branch code coverage can be generated with the GCOV tool. If you want to generate nice HTML coverage reports there are LCOV and ZCOV which do just that. |
|||
|
|
|
I realize this is an old question, but if you prefer BDD-style testing (rspec, Jasmine, etc.) over xUnit-style testing (Test::Unit, JSUnit, JUnit, etc.), then you may consider checking out Cedar. Cedar brings BDD-style testing to Objective-C, now that the language supports closures. We're happily using Cedar for our iOS projects at Pivotal Labs, and we're actively working on improving it. Any feedback or suggestions are welcome at cedar-discuss@googlegroups.com |
||||
|
|
|
The Unit Testing support bundled within xcode (for its simple setup) combined with ocrunner (for some autotest/Growl goodness) is currently my favorite Obj-C Unit Testing setup. |
|||
|
|
|
Sen:te (the creator of the testing framework included with Xcode) explains how to use OCUnit with an iPhone project: http://www.sente.ch/s/?p=535&lang=en. |
|||
|
|
|
I recommend gh-unit, it has a nice GUI for test results. |
|||
|
|
|
here is a whole lot of them http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#Objective-C |
|||
|
|
|
Matt Gallagher of Cocoa with Love has a very good article on unit testing. |
|||
|
|
|
I use SimpleUnitTest works with iPhone and iPad libs. http://cbess.blogspot.com/2010/05/simple-iphone-ipad-unit-test.html It comes with a unit test Xcode template to easily add a unit test class. Wraps GTM. You can literally drop it into an active project and start adding unit tests within 3 minutes (or less). |
|||||
|
|
|
I would suggest looking into Kiwi, an open source BDD testing framework for iOS: https://github.com/allending/Kiwi Check out the project's WIKI to start or get Daniel Steinberg's book "Test Driving iOS Development with Kiwi" https://itunes.apple.com/us/book/test-driving-ios-development/id502345143?mt=11 |
|||
|
|