I want to write some logic unit tests for classes in my XCode application. In Xcode 4, I clicked on the project name in the Project Navigator, and from the bottom clicked Add Target. I chose "Cocoa Touch Unit Testing Bundle" under Other, give the new target a "product name" of "tests", and finish.

Because the class I want to test is compiled as part of my existing application target, for my new "tests" target I immediately go to the Build Phases tab and add my existing application target as the only target dependency.

I then go to the created tests.m file, import the class I want to test (below it's ReleasePlanManager, and call one of its methods. But the linker fails with an error like:

Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_ReleasePlanManager", referenced from:
      objc-class-ref in tests.o
ld: symbol(s) not found for architecture i386
collect2: ld returned 1 exit status

So the class cannot be found, even though (from my understanding) adding the application target (which it is a part of) should be sufficient?

Any help would be greatly appreciated. Thanks!

link|improve this question

link:stackoverflow.com/questions/6397763/… – sanemat Jun 25 '11 at 11:38
feedback

2 Answers

up vote 6 down vote accepted

Your test bundle needs extra settings:

  • Set Bundle Loader to $(BUILT_PRODUCTS_DIR)/AppName.app/AppName (replacing AppName in both places with your app's name)
  • Set Test Host to $(BUNDLE_LOADER)

(If you create a project from scratch and enable unit tests, these are set up for you. But if you add a unit test bundle to an existing project, they're not.)

link|improve this answer
2  
It's also worth noting that your host application target must not be configured for "Symbols Hidden by Default" (in the Code Generation section of Build Settings) for the Configuration you execute your tests against. This just tripped me up earlier today on an older application. – Blake Watters Jan 11 at 21:04
@BlakeWatters: Excellent point, I'd forgotten that. – Jon Reid Jan 11 at 21:18
I followed your and Blake Watters’ suggestions, now it gives me: -bundle_loader can only be used with -bundle, any ideas? – ishaq Apr 30 at 8:55
(may be I am facing this because I am using GHUnit and not SenTestingKit?) - for now I am including the required sources to both main target and test target. – ishaq Apr 30 at 9:03
(sorry for spamming) looking here stackoverflow.com/questions/2610670/…, I think adding sources to both targets is the only solution, which is something I really don’t want to do – ishaq Apr 30 at 9:12
show 3 more comments
feedback

Ensure that the ReleasePlanManager.m file is included in the 'Compile Sources' phase for the tests target.

You can add it directly into the phase or select the file in Xcode, go to the 'File Inspector' and tick the checkbox for the tests target under the 'Target Membership' section.

link|improve this answer
Thanks for the pointer, but then don't I have to include the classes they depend on under "Compile Sources," and so forth until I've added the transitive closure of all dependencies? That's what I thought adding the application target as a dependency was supposed to avoid. – shadowmatter Jun 23 '11 at 22:05
I personally have never tried your route but yes, you would need to add the dependencies. I think your route doesn't work because adding the target as a dependency will simply build that other target. Your tests target has no knowledge of that target - it's as though it was built completely separate. Essentially the two targets are two separate products. Hope that makes sense. – InsertWittyName Jun 23 '11 at 22:07
You do not have to add the dependencies to the test target if you have configured "Application Tests" as the test bundle is injected into an instance of your application and can resolve the symbols from the host binary. See Apple's documentation: developer.apple.com/library/ios/#documentation/DeveloperTools/… – Blake Watters Jan 11 at 21:01
feedback

Your Answer

 
or
required, but never shown

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