Top "Cppunit" questions

CppUnit is a macro-based unit testing framework for C++.

Comparison of C++ unit test frameworks

I know there are already a few questions regarding recommendations for C++ unit test frameworks, but all the answers did …

c++ unit-testing cppunit googletest boost-test
GoogleTest vs CppUnit: The facts

In the process of setting our C++ unit testing framework for the next years we shortlisted GoogleTest and CppUnit. I …

c++ unit-testing tdd googletest cppunit
Test Driven Development with C++

Looking to start doing TDD in C++. I've seen CPPUnit, but I was wondering if there are other options that …

c++ tdd cppunit
C++ Unit Testing Libraries

I've come across cppunit but it didn't look super-easy to use (maybe I didn't look hard, maybe because C++ doesn't …

c++ unit-testing cppunit
Unit testing destructors?

Is there any good way to unit test destructors? Like say I have a class like this (contrived) example: class …

c++ unit-testing destructor cppunit
macro `AM_PATH_CPPUNIT' not found in library

I am trying to build libtorrent on shared hosting. So built CPPUnit(1.12.1) with --prefix=$HOME. After that my $HOME/lib …

makefile configure cppunit
Why does Google Mocks find this function call ambiguous?

I've run into an issue while attempting to start using Google Mocks - for some reason it can't tell the …

c++ templates compilation cppunit googlemock
How to run CPPUnit unit tests

I have written few c++ Unit tests using CPPUnit. But I do not understand how to run those. Is there …

c++ unit-testing cppunit
Install latest cppunit in windows

I am trying to install CppUnit on Windows. I have downloaded it from here, decompressed it, and noticed that all …

c++ windows installation cppunit
boost.test vs. CppUnit

I've been using CppUnit for quite a while now (and am happy with it). As we are using more and …

c++ boost cppunit boost-test