I am developing a Mac OS X framework and I want to use OCUnit in my Xcode 3.2.1 project. I have completed several tutorials on setting up the OCUnit test suite. The problem is that when I create a test case that uses a function defined in one of the structure sources, I get a building error telling me that the character was not found.
I made the test package dependent on my project target, as the tutorial said, but that doesn't seem to be the problem. At first, I thought I could solve this problem by dragging the source frame files to the compilation sources section in the target set of test packages, but then all the symbols referenced by this source file started appearing in the build errors, so it seems to be a good solution / idea.
How can I configure the unit test package to build correctly?
source share