I am using a swift package in my iOS project that happens to have various files in a Tests
directory. Tests
exists the same parent directory as its Sources
folder. I can see and use all the classes defined in the Sources
directory, but see no way to use the ones in the Tests directory.
Is there a way for me to import and/or use those classes in my application's test target?