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
Import Module on top of your test class
@testable import myModuleName
You can find-out your module name on Target->Build Settings-> Product Module Name
Target->Build Settings-> Product Module Name
Then you can use any of class which belongs to that module. No need to import classes one by one.