views:

93

answers:

3

Is there a unit testing framework for Microsoft Visual C++ 6.0?

+2  A: 

I'm not a C++ programmer, but I think CppUnit does the trick. I'm sure there are others.

Paddyslacker
Ya, CppUnit works well with msvc 6
EvilTeach
+1  A: 

You can read this article for list of all C++ unit testing frameworks, and check which one is working with VS6.0

Glorphindale
A: 

CppUnit requires more work than necessary, particularly the work it takes to create a new test case. The original author, Michael Feathers, published a simplified framework which has been used as the basis for others. I've used UnitTest++, and am very interested in googletest. Either one will let you create a new test case without having to declare it and manually add it to a suite; the frameworks do that for you.

Jon Reid