I'm trying to find a way to test my objective-c classes like i test my java classes.
Whenever i build a java class I just drop a main() method at the bottom of my class and tell eclipse to compile/run the class I'm working with. However, in objective-c I'm not allowed to do this. I have been reading around the web and have heard a lot about unit testing, but was trying to find a simple way to just test my code without having to make custom targets each time.
Thanks, Freddy