What kind of project for QTest?
I want to unit-test a few (non Gui) classes I ported from another language so the idea of trying QTest was rather natural.
When I look at the QTest documentation I read that there is a QTest macro that creates a main() function.
As far as I know you can't have two mains in one project. So creating a Console application is out of the question.
So then, what kind of project would you recommend?
Re: What kind of project for QTest?
If you are using QtCreator, it has a program template for QTest based unit tests.
Look in category "Other Templates"
Cheers,
_
Re: What kind of project for QTest?
Thankyou!
I didnt think of looking that far.