vote up 29 vote down star
18

I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring project.

Do you know a good tool that can help me write unit tests in C++? Maybe something similar to Junit or Nunit?

Can anyone give some good advice on the methodology of writing unit tests for modules that were written without unit testing in mind?

flag

56% accept rate
Check out this question: stackoverflow.com/questions/3150/… – Aardvark May 11 at 19:45

16 Answers

vote up 17 vote down check

Google recently released their own library for unit testing C++ apps.

Google test@google.code

link|flag
1  
is it possible to use this with VC++ – yesraaj Oct 31 '08 at 14:15
vote up 0 vote down

If you are on Visual Studio 2008 SP1, I would highly recommend using MSTest for writing the unit tests. I then use Google mock for writing the mocks. The integration with the IDE is ideal and allows and doesn't carry the overhead of CPPunit in terms of editing three places for the addition of one test.

link|flag
vote up 0 vote down

Have a look at cfix (http://www.cfix-testing.org), it's specialized for Windows C/C++ development and supports both user mode and kernel mode unit testing.

link|flag
vote up 1 vote down

Have a look at CUnitWin32. It's written for MS Visual C. It includes an example.

link|flag
vote up 7 vote down

Check out an excellent comparison between several available suites. The author of that article later developed UnitTest++.

What I particularly like about it (apart from the fact that it handles exceptions etc. well) is that there is a very limited amount of 'administration' around the test cases and test fixtures definition.

link|flag
vote up 3 vote down

See also the answers to the closely related question "choosing a c++ unit testing tool/framework", here

link|flag
vote up 0 vote down

Check out fructose: http://sourceforge.net/projects/fructose/

It's a very simple framework, containing only header files and thus easy portable.

link|flag
vote up 0 vote down

You might also find the Aeryn testing framework worth a look

link|flag
vote up 6 vote down

Noel Llopis of Games From Within is the author of Exploring the C++ Unit Testing Framework Jungle, a comprehensive (but now dated) evaluation of the various C++ Unit Testing frameworks, as well as a book on game programming. He used CppUnitLite for quite a while, fixing various things, but eventually joined forces with another unit test library author, and produced UnitTest++. We use UnitTest++ here, and I like it a lot, so far. It has (to me) the exact right balance of power with a small footprint. I've used homegrown solutions, CxxTest (which requires Perl), and boost::test. When I implemented unit testing here at my current job it pretty much came down to UnitTest++ vs boost::test. I really like most boost libraries I have used, but IMHO, boost::test is a little too heavy-handed. I especially did not like that it requires you (AFAIK) to implement the main program of the test harness using a boost::test macro. I know that it is not "pure" TDD, but sometimes we need a way to run tests from withing a GUI application, for example when a special test flag is passed in on the command line, and boost::test cannot support this type of scenario. UnitTest++ was the simplest test framework to set up and use that I have encountered in my (limited) experience.

link|flag
vote up 19 vote down

Applying unit tests to legacy code was the very reason Working Effectively with Legacy Code was written. Michael Feathers is the author - as mentioned in other answers, he was involved in the creation of both CppUnit and CppUnitLite.

alt text

link|flag
1  
Added a thumbnail - voted up. The book helps more than any tool. – Gishu Sep 18 '08 at 10:55
vote up 4 vote down

Boost has a Testing library which contains support for unit testing. It might be worth checking out.

link|flag
1  
I can recommend this excellent toolkit. – Rob Feb 12 at 22:18
vote up 7 vote down

CxxTest is a light, easy to use and cross platform JUnit/CppUnit/xUnit-like framework for C++.

link|flag
vote up 3 vote down

UnitTest++, small & simple.

link|flag
vote up 2 vote down

I've tried CPPunit and it's not very user friendly.

The only alternative I know is using C++.NET to wrap your C++ classes and writing unit tests with one of .NET unit testing frameworks (NUnit, MBUnit etc.)

link|flag
vote up 1 vote down

Michael Feathers of ObjectMentor was instrumental in the development of both CppUnit and CppUnitLite.

He now recommends CppUnitLite

link|flag
vote up 5 vote down

CppUnit is the way. See link below:

http://cppunit.sourceforge.net/cppunit-wiki

http://en.wikipedia.org/wiki/CppUnit

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.