Unit test in C ++

Possible Duplicates:
C ++ Testing Basics: Search Recommendation
Structural Testing of C ++ Modules

Hello,

What unit test environment do you recommend for C ++?

thank

+3
source share
4 answers

In the past, I used 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 ).

Recently, I also use QTest (part of the Qt framework) also for my projects other than Qt ( http://qt.nokia.com/products/ )

+3
source

Source: https://habr.com/ru/post/1795605/


All Articles