I set my first steps upon the noble path of using unit tests to develop my application, but it proves to be a steep and rough one. I\'m developing an application in Qt, so thou
Definitely create a separate project for your tests. If you arrange the application project and test project in side-by-side directories, you should be able to reference your code units from your application project using relative paths in your test.pro
file.
I use the very handy test runner presented on this blog.