I\'ve created an iOS unit test target for doing logic tests following the steps provided in Apple\'s documentation.
However my build fails and i get the following e
I actually just solved it. I had to copy all of the .m files in my project to the LogicTest target's 'Compile Sources'. As well as add the frameworks the sources reference to the 'Link Binary With Libraries' section of the target.
I hope this helps others