Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ testing framework: recommendation sought [closed]

I'm looking for a "quick and dirty" C++ testing framework I can use on my Windows/Visual Studio box. It's just me developing, so it doesn't have to be enterprise class software. Staring at a list of testing frameworks, I am somewhat befuddled...

http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#C.2B.2B

like image 874
Paul Nathan Avatar asked Dec 01 '22 13:12

Paul Nathan


1 Answers

Here's a great article about C++ TDD frameworks. For the record, my personal preference is CxxTest, which I have been happily using for about six months now.

like image 127
Nik Reiman Avatar answered Dec 04 '22 06:12

Nik Reiman