vote up 1 vote down star
2

I'm going to write a quite large application for school project in C++. So far I'm quite used to TDD in Java and Ruby using JUnit and RSpec.

But as far as my experience goes, I've never seen any C/C++ project with any test suite.

What library do you recommend for testing in C++?
Are there any good mocking/stubbing frameworks for C++?

Actually I'm using NetBeans IDE and there seems to be no support for testing whatsoever.
What tool would you recommend for TDD in C++?

Is TDD even possible with C++? The compile time seems to me like a big drawback.

flag

Dupe of stackoverflow.com/questions/1439172/… (and others) – ctacke Sep 23 at 23:07

10 Answers

vote up 5 vote down

The Boost Test Library gives you unit tests etc.

link|flag
vote up 3 vote down

There's plenty of unit test frameworks for C++. The 2 I have the most experience with are CppUnit and CxxTest. I prefer CxxTest as I find it easier not to have to register my test cases explicitly as you have to do with CppUnit. there's an eclipse plugin for CxxTest but I don't know if there's one for NetBeans. Compile time shouldn't really be an issue with well written C++ and definately isn't a reason to skip unit tests / tdd.

For acceptance testing I've used exactor. This is a java based tool, but it's not difficult to use in a C++ environment.

link|flag
vote up 2 vote down

We use Goggle Test Framework. And we don't run tests on every compile.

link|flag
vote up 1 vote down

For Integrated Testing, might I suggest the C++ implementation of FIT (Framework for Integrated Test) - http://fit.c2.com aka CEEFIT (http://ceefit.woldrich.com/?page=Home) (at the time of writing this article the ceefit site was down. hopefully it will come back up soon). I have personally used CEEFIT to run Integrated Tests on legacy C++ code-bases that interact with Computer-Aided Design platform API (SolidWorks if you are aware of it). I am fortunate that CEEFIT is open source, because I had to extend it to do custom things, like read multiple tables as input (default behavior is to read a single table for a test-class). After having worked with CEEFIT for at least a year now, I am relatively confident I can run Integrated Tests on most systems with this tool.

Shameless plug - some of my blog posts recounting my experience with CEEFIT with downloads http://ossandcad.blogspot.com/2009/07/swx-batch-mode-integrated-tests-with.html http://ossandcad.blogspot.com/2009/02/writing-ceefit-class-like-regular-c.html

There are a few caveats with CEEFIT though - providing input through a table format is not always feasible (not CEEFIT's fault, thats by design of FIT, which CEEFIT simply implements). The source code has not been updated for many years, if memory serves right (since site is down), since 2005 (but since its open source, this has not caused many problems for me in my work).

link|flag
vote up 0 vote down

Have you tried CPPTest?

link|flag
vote up 0 vote down

cxxtest


link|flag
vote up 0 vote down

Shameless plug: Have a look at cfix and Visual Assert.

link|flag
vote up 0 vote down

If you used to use JUnit and jMock, I would like to recommend you :

Googlemock and seamless coorperate with Googletest.

For TDD, my self use

with some scripts composed by myself. And all of these work well.

link|flag
vote up 0 vote down

unittest++

link|flag
vote up 0 vote down

As you have worked on JUnit , It would be easy for you to work on 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.