Console and debugger do not work during unit testing of iPhone in Xcode

I am creating a set of logic tests using Xcode 3.1.4. So far, I can build a test target and see the results inside the * .m test files as compiler errors (if they fail). The problem is that I do not see any information in the debugger console, and I can not debug it, since the debugger does not work either.

1. How can I do to see the output of TestCases on the debugger console?

2. Are there any configuration problems associated with test cases for unit testing and debugging?

I would be very grateful if anyone could help me.

Thanks!!

+3
source share
2 answers

You can set up Google Toolbox for Mac . With it, you can execute your code both on the simulator and on the device.

0
source

http://www.grokkingcocoa.com/how_to_debug_iphone_unit_te.html worked great for me as soon as I turned off the environment variable DYLD_FRAMEWORK_PATH.

0
source

Source: https://habr.com/ru/post/1719219/


All Articles