I have multiple projects in my workspace including a subproject to one of my projects.
So the folder structure is as such:
Workspace |-- Pods Project `-- Main Project |-- AppDelegate.h |-- AppDelegate.m |-- UnitTests | |-- testAppDelegate.m | `-- testSPClass.m `-- Sub Project |-- SPClass.h `-- SPClass.m
The sub project target is built as a static library.
The main project target has the sub project as a dependency. I have a test target in my main project that creates a coverage report based off of the classes contains in my main project but not my subproject.
Is there any way I can force the coverage report to include the sub projects classes?
(Xcode 5.1, iOSSimulator 7.1)