Possible Duplicates:
C++ testing framework: recommendation sought
C++ unit testing framework
Hello,
which unit test framework do you recommend for c++ ?
Thanks
Possible Duplicates:
C++ testing framework: recommendation sought
C++ unit testing framework
Hello,
which unit test framework do you recommend for c++ ?
Thanks
In the past I was using CppUnit(http://sourceforge.net/apps/mediawiki/cppunit/index.php?title=Main_Page), but now I prefer the Boost test library (http://www.boost.org/doc/libs/1_46_0/libs/test/doc/html/index.html).
Lately I also use QTest (part of the Qt framework) also for my non-Qt projects (http://qt.nokia.com/products/)