I know there are already a few questions regarding recomendations for c++ unit test frameworks, but all the answers did not help as they just recomend one of the frameworks but do not provide any information about a (feature) comparison.

I think the most interesting frameworks are CppUnit, Boost and the new Google testing framework. Has anybody done any comparison yet?

link|improve this question
feedback

11 Answers

up vote 11 down vote accepted

See this question for some discussion, and this question as well.

They recommend the articles: Exploring the C++ Unit Testing Framework Jungle, By Noel Llopis. And the more recent: C++ Test Unit Frameworks

I have not found an article that compares googletest to the other frameworks yet.

link|improve this answer
As I wrote: all the answers just recomend one of the frameworks but do not compare the framework to another. – housemaister Oct 28 '08 at 11:21
You're not happy with the article either ? – Gishu Oct 28 '08 at 11:33
1  
One criticism: the article, while good, is from 2004 and doesn't include Google Test. – richq Oct 28 '08 at 11:54
I have to admit that I ignored the article as it is rather old; but I will make up for this now. Btw: better link to the article: gamesfromwithin.com/?p=29 Nevertheless comparison to google test is of course missing. – housemaister Oct 28 '08 at 12:29
1  
In the first link you'll see two comparisons. Except the new framework from google, most information is (are?) still relevant. (And CppUnit is not the most interesting, it's too clumsy to use) – Luc Hermitte Oct 28 '08 at 12:55
show 1 more comment
feedback

A new player is Google Test (also known as Google C++ Testing Framework) which is pretty nice though.

#include <gtest/gtest.h>

TEST(MyTestSuitName, MyTestCaseName) {
    int actual = 1;
    EXPECT_GT(actual, 0);
    EXPECT_EQ(1, actual) << "Should be equal to one";
}

Main features:

  • Portable
  • Fatal and non-fatal assertions
  • Easy assertions informative messages: ASSERT_EQ(5, Foo(i)) << " where i = " << i;
  • Google Test automatically detects your tests and doesn't require you to enumerate them in order to run them
  • Make it easy to extend your assertion vocabulary
  • Death tests (see advanced guide)
  • SCOPED_TRACE for subroutine loops
  • You can decide which tests to run
  • XML test report generation
  • Fixtures / Mock / Templates...
link|improve this answer
2  
I really enjoy using google test over some of the other frameworks especially with its mocking capabilities that can be found in the googlemock framework. – weijiajun Oct 26 '10 at 5:27
I provide all these features (although some are not yet public) and more in my new test framework, CATCH. See my answer for link. – philsquared Dec 28 '10 at 3:14
1  
combining it together with Google C++ Mocking framework makes it really powerful xUnit test framework for unit test C++ code. – ratkok Jun 7 '11 at 18:38
feedback

Boost Test Library is a very good choice especially if you're already using Boost.

// TODO: Include your class to test here.
#define BOOST_TEST_MODULE MyTest
#include <boost/test/unit_test.hpp>

BOOST_AUTO_TEST_CASE(MyTestCase)
{
    // To simplify this example test, let's suppose we'll test 'float'.
    // Some test are stupid, but all should pass.
    float x = 9.5f;

    BOOST_CHECK(x != 0.0f);
    BOOST_CHECK_EQUAL((int)x, 9);
    BOOST_CHECK_CLOSE(x, 9.5f, 0.0001f); // Checks differ no more then 0.0001%
}

It supports:

  • Automatic or manual tests registration
  • Many assertions
  • Automatic comparison of collections
  • Various output formats (including XML)
  • Fixtures / Templates...

PS: I wrote an article about it that may help you getting started: C++ Unit Testing Framework: A Boost Test Tutorial

link|improve this answer
feedback

I've just pushed my own framework, CATCH, out there. It's still under development but I believe it already surpasses most other frameworks. Different people have different criteria but I've tried to cover most ground without too many trade-offs. Take a look at my linked blog entry for a taster. My top five features are:

  • Header only
  • Auto registration of function and method based tests
  • Decomposes standard C++ expressions into LHS and RHS (so you don't need a whole family of assert macros).
  • Support for nested sections within a function based fixture
  • Name tests using natural language - function/ method names are generated

It also has Objective-C bindings. The project is hosted on Github

link|improve this answer
feedback

Wikipedia has a comprehensive list of unit testing frameworks, with tables that identify features supported or not.

link|improve this answer
feedback

There are some relevant C++ unit testing resources at http://www.progweap.com/resources.html

link|improve this answer
feedback

Have you tried Isolator++? http://www.typemock.com/isolatorpp-product-page

(Disclaimer: I work for Typemock)

link|improve this answer
feedback

CppUTest - very nice, light weight framework with mock libraries. Worthwhile taking a closer look.

link|improve this answer
feedback

API Sanity AutoTest / dev (LGPL) framework for C++ API from ISPRAS and The Linux Foundation:

API Sanity AutoTest (ASAT) 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. 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 ...

Unique features (in comparison with CppUnit, Boost and Google Test):

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

Other features:

  • Portable framework (written in Perl)
  • HTML report (human readable)
  • Easy to use/integrate
  • Scalable framework, suitable for very big projects (up to 10.000 API functions and more)
link|improve this answer
feedback

CPUnit (http://cpunit.sourceforge.net) is a framework that is similar to Google Test, but which relies on less macos (asserts are functions), and where the macros are prefixed to avoid the usual macro pitfall. Tests look like:

#include <cpunit>

namespace MyAssetTest {
    using namespace cpunit;

    CPUNIT_FUNC(MyAssetTest, test_stuff) {
        int some_value = 42;
        assert_equals("Wrong value!", 666, some_value);
    }

    // Fixtures go as follows:
    CPUNIT_SET_UP(MyAssetTest) {
        // Setting up suite here...
        // And the same goes for tear-down.
    }

}

They auto-register, so you need not more than this. Then it is just compile and run. I find using this framework very much like using JUnit, for those who have had to spend some time programming Java. Very nice!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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