I have a Core Data / Swift Cocoa application project in Xcode 6 (let\'s call the project Stuff
). I created a Core Data entity called Query
and used Xco
Took me a while to figure this out. The ideal solution is to import the bridging header in the test target itself. Go in Build Settings
> Swift compiler
> Code Generation
and give the name of your bridging header.
Be careful, the test target is not selected by default. You have to select it in the scrollbar (it's located on the same line as General, info, build Settings, build Phases, and Build Rules).
This way, you will have the same bridging header for both your project and your different test targets.