vote up 3 vote down star
5

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.

flag

63% accept rate

3 Answers

vote up 4 vote down

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

link|flag
This is exactly what I was looking for! :D – rik.the.vik Jun 24 at 16:30
vote up 1 vote down

The NSLog messages show up in Console.app

Should give you a starting point.

link|flag
vote up 0 vote down

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|flag
I try this and not work. The debugger not get opened. – mamcx Aug 12 at 17:29

Your Answer

Get an OpenID
or

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