Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Could you recommend a testing tool/framework to use for testing C++ code in a UNIX environment?

share|improve this question

closed as not constructive by Smi, Dave, Ansgar Wiechers, Juvanis, rhalbersma Apr 20 at 15:05

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

15 Answers

up vote 20 down vote accepted

I use boost unittest framework at work. Lots of interesting capabilities like exception catching, and very very easy to use, I recommand. (look at boost unittest)

share|improve this answer
2  
Yeah, I used to use Boost Test, but then one day I had an issue with the testing framework not liking my ostream operator... after a few hours of struggling with it (and it not working), I tried UnitTest++ and it worked on the first go without issues. I use UnitTest++ now. – ceretullis Mar 17 '09 at 18:27

Not specific to UNIX, but there is a very detailed journal by Noel Llopis in 2004, where he explored several of the major unit testing frameworks of the time. Note that while at the end of the article he declares a winner (CxxTest), he has a follow-up post where he retracts his winner and instead starts writing his own unit testing framework, which turns into UnitTest++. At work we use a customized version of CppUnitLite, however I've been playing with UnitTest++ and it fixed some of the major shortcomings of CppUnitLite (catches exceptions in tests, implements test suites, built-in support for time limits).

share|improve this answer

You should also check out the latest google test toolkit for c++ googletest I have not tried it myself, but they say its got more features than CppUnit (or any other c++ unit testing framework). I am sure its very easy to learn the API since its based on other popular xUnit (like JUnit) framework

share|improve this answer

I use UnitTest++. For starters it will work with any C++ you care to mention including (with a bit of hacking) VC6. It comes with solutions for VS2002-2005 and make files for posix environs.

It also works well with AMOP - a mock object framework.

Update: And now it shouldn't need any hacking to work with VC6 - the hacks are included with the source!

share|improve this answer

We are using TUT. I strongly recommend it.

It is really easy to integrate into an application (just include the header file, which the only file : no lib), and writing tests is very easy because of the clever use of templates ! No macros or anything like that with TUT !

We are very happy with it !

share|improve this answer
2  
I like the template<> template<>. We ended up wrapping macros around asserts, because you really want to know at which __LINE__ your test failed. Apart from that, great design. – Eddy Pronk Apr 14 '10 at 3:45
I put up a header only library providing macros wrapping TUT's ensure function and test decleration code. Here is a link to a post with examples of the difference in output and the code as well as link to the project on github: codecrafter.wordpress.com/2012/12/19/tutadapter1 – Josh Heitzman Dec 19 '12 at 22:15

I once did a comprehensive test of (if I remember correctly) five unittest-frameworks for C++, but not specifically for a UNIX environment. There where two clear winners for me, being CPPUnit and UnitTest++. Back then CPPUnit was the best choice since (imo) setting up a testing-project is way easier than with UnitTest++ but at work I use UnitTest++ these days.

Sadly, I haven't been able to find the document since the original posting date of this comment. If I ever find the document again (It's there, somewhere in a backup I suppose) I'll post the comparison below.

Idimba found this good article summarizing a lot of the pros / cons of different C++ test frameworks.

share|improve this answer

My team develops C++ applications on Linux and we have had a lot of success with CppUnit. I recently set up an automated build and test framework which does the following each night: checks out our latest code, builds it, runs our CppUnit tests against the build, and sends out an email report with the build and test results to the entire team each morning. CppUnit lends itself well to automation and also has good built-in XML reporting that we use to generate the daily email. Our email report looks like this: alt text

share|improve this answer

We use UnitTest++ here for our new project, and generally get along very well with it. We need it to be multi-platfom, including Mac.

Choosing the framework is just half the battle. Working out how you organise test code and hook it into a cross-platform build environment is the next step. The biggest challenge is educating your engineers to effectively use unit testing - getting there, but by no means a solved problem. I'll be browsing SO for hints!

Under each of our module folders we have a unittest folder - always called that - which contains source files that obey a naming convention so they can be always built. The resulting EXE's go into a platform/build specific BIN folder where all the normal product DLL's end up. Our autobuild fails if there are no tests for the module.

share|improve this answer

Just wanted to chime in to agree with Amit: gunit aka googletest is an excellent testing framework, and the code is an interesting read as well. (Especially the mock support!)

share|improve this answer

I strongly recommend cxxtest, but regardless of the testing framework you choose, amop is a great addition.

share|improve this answer

EDIT: Ooops, I totally missed the 'UNIX' part if the question. But I'll leave this answer here, rather than delete it, because it still could be useful for people wanting C++ unit testing on Windows.


I use NUnit, I just write all my tests in C++/CLI and then reference the same native C++ libs that my main project does. You do need to make a 'stub' .exe project that does almost nothing other than call the startup code in the .lib for this to work though.

It might seem a bit odd doing it this way, but I've found the testing tools for .NET to be miles ahead of C++ (e.g. NUnit), and C++/CLI is pretty good now. It also makes it easier to link your unit tests into CruiseControl.NET.

Obviously none of this is any of use if you're not developing with Visual Studio, in which case I'd probably go for Boost's test framework as well.

share|improve this answer

API Sanity Checker / home (LGPL) from ISPRAS and The Linux Foundation:

API Sanity Checker is an automatic generator of basic unit tests for a dynamic C/C++ library API. It helps to quickly generate simple ("sanity" or "shallow"-quality) test cases for every function in an API using their signatures, data type definitions and relationships between functions straight from the library header files ("Header-Driven Generation"). Each test case contains a function call with reasonable (in most, but unfortunately not all, cases) input parameters. The quality of generated tests allows to check absence of critical errors in simple use cases and can be improved by involving of highly reusable "specialized types" for the library.

API Sanity Checker can execute generated tests and detect crashes, aborts, all kinds of emitted signals, non-zero program return code, program hanging and requirement failures (if specified). API Sanity Autotest can be considered as a tool for out-of-box low-cost sanity checking of a library API or as a test development framework for initial generation of templates for advanced tests. Also it supports universal Template2Code format of tests, random test generation mode and other useful features.

Unique features:

  • Automatic test data/input parameters generation (even for complex types)
  • Modern specialized data types instead of usual fixtures/templates (more info)

Examples:

share|improve this answer

We use CppUnit at work; our platform is Windows, although I don't think that would make a difference here. It seems to do a pretty decent job. I don't have any experience with other unit testing frameworks, though, so I can't really give you a fair comparison.

share|improve this answer

See also the answers to the closely related question "Unit testing for C++ code - Tools and methodology", here

share|improve this answer

I'm biased, but I'd have to recommend my own framework.

share|improve this answer

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