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
2010-03-12 05:10:30
Ya, CppUnit works well with msvc 6
EvilTeach
2010-03-12 05:41:14
+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
2010-03-12 05:38:40
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
2010-03-12 05:54:15