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
FWIW, on Xcode 7, import with the annotation: @testable. Example:
import Pickle @ImportTests
Then you'll be able to see the classes in code completion and compiling. source: https://www.natashatherobot.com/swift-2-xcode-7-unit-testing-access/