I am trying to test the classes in my iOS app. I am trying to import the target Pickle in my app that has all my classes into my testing target PickleTest
Pickle
PickleTest
You don't have to do this. You can use link_with in your Podfile. In your case you would do.
link_with 'Pickle', 'PickleTests'
And then pod update
pod update