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
Check if you forgot to add your test target in your Podfile:
Podfile
target 'MyProject' do # Add test target target 'MyProjectTests' do inherit! :search_paths end pod 'SomePodLibrary' end