Top "Boost-test" questions

Boost Test Library is a portable test framework for performing unit testing in 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
CMake: Project structure with unit tests

I am trying to structure my project to include the production sources (in src subfolder) and tests (in test subfolder). …

c++ unit-testing boost cmake boost-test
Boost test linking

I want to use Boost test in my project. I use cmake in my project so I wrote a simple …

c++ unit-testing boost linker boost-test
boost test - 'undefined reference' errors

I have two simple files: runner.cpp: #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE Main #include <boost/…

c++ unit-testing boost mingw boost-test
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
Is there a way to run C++ Unit Tests tests in parallel?

I'm using Boost Test for a long time now and I ends up having my tests running too slowly. As …

c++ multithreading unit-testing concurrency boost-test
How can I use Boost.Test in a CMake based project?

My project uses CMake as its build system, and I want it to execute my Boost.Test test cases. How …

c++ boost cmake boost-test
Using Jenkins with boost.test unit tests

I have done a bit of Googling in this area and have found many discussions about getting Jenkins to understand …

c++ jenkins boost-test
Command line args in boost test

I wish to process extra command line arguments for my boost test. I'm using it to test a feature automatically …

c++ boost boost-test
finding memory leaks in a boost::test::unit_test

This question is a continuation to a previous question on boost::test::unit_test. I've written a unit test and …

c++ unit-testing visual-c++ boost-test