Boost Test Library is a portable test framework for performing unit testing in c++
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-testI 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-testI 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-testI have two simple files: runner.cpp: #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE Main #include <boost/…
c++ unit-testing boost mingw boost-testI've been using CppUnit for quite a while now (and am happy with it). As we are using more and …
c++ boost cppunit boost-testI'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-testMy project uses CMake as its build system, and I want it to execute my Boost.Test test cases. How …
c++ boost cmake boost-testI have done a bit of Googling in this area and have found many discussions about getting Jenkins to understand …
c++ jenkins boost-testI wish to process extra command line arguments for my boost test. I'm using it to test a feature automatically …
c++ boost boost-testThis 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