up vote 6 down vote favorite
9
share [g+] share [fb]

I found examples on how to debug your unit test in Cocoa or the ADC page here. But I can't get the debugging to work for an iPhone app target. I can get the tests up and running and they are run during the build, but what I need is to debug the tests for some of the more complex failures.

link|improve this question

65% accept rate
feedback

5 Answers

You might consider moving your tests to GHUnit, where they run in a normal application target, so debugging is straightforward.

link|improve this answer
This is exactly what I was looking for! :D – rik.the.vik Jun 24 '09 at 16:30
I just tried it out, and it has made my life a lot simpler now. – Pete Jan 23 '11 at 18:17
In Xcode 4, you can set breakpoints in unit tests, using SenTestingKit/OCUnit (the unit testing framework that comes with Xcode). – MattDiPasquale Jul 20 '11 at 3:44
feedback

This can be done by setting up a separate Executable for the project that uses the otest tool to run the unit tests, after setting a bunch of relevant environment variables for the executable. I have used this method to successfully debug SenTestKit logic unit tests.

I found the following links helpful:

http://www.grokkingcocoa.com/how_to_debug_iphone_unit_te.html (also contains help to fix common errors encountered setting up the project).

http://cocoawithlove.com/2009/12/sample-iphone-application-with-complete.html (covers both logic tests and application tests)

http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/otest.1.html (Man Page for otest XCode tool)

link|improve this answer
feedback

The NSLog messages show up in Console.app

Should give you a starting point.

link|improve this answer
feedback

In Xcode 4, you can set breakpoints in your unit tests.

  1. Create a new project with "include unit tests" checked.
  2. Put a breakpoint in the failing unit test.
  3. Press Command-U to test.
link|improve this answer
feedback

If you do Build & Go instead of just build, then you can set breakpoints in your unit tests and debug them traditionally. This is if you are using the google toolbox for iphone unit testing; i don't know how you are doing it and if the process is different.

link|improve this answer
I try this and not work. The debugger not get opened. – mamcx Aug 12 '09 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.