Recently I have started writing test case for one old static library. I have loaded the library to Xcode 5,Since Static Library is old , I have to manually add TestProject w
Had a similar issue:
FrameworkA imports FrameworkB
FrameworkA-Tests also imports FrameworkB
What solved the issue was to remove(comment) all references to FrameworkB in FrameworkA-Tests, then Run Tests once and uncomment the references.
FrameworkA-Tests now imports FrameworkB and runs fine.