The boost-unit-test-framework tag has no wiki summary.
0
votes
1answer
23 views
What does BOOST_TEST_PASSPOINT do?
Can anyone tell me what the function of BOOST_TEST_PASSPOINT is? The official documentation links to the wrong page, and has for the past four years.
0
votes
1answer
20 views
Boost testing: Get error count
Is there a way to get the current error count of the current test case in Boost UTF?
I'd like to execute code in the case that at least one check in my test case failed. Something like:
if ...
0
votes
1answer
32 views
Can google test handle multithreaded test output on windows
I just hit a problem with boost unit running on windows where the output from multiple threads is not atomic, so it corrupts the output XML which confuses the CI system if I put any tests or messages ...
0
votes
1answer
129 views
Boost unit tests not producing output in Eclipse with MinGW
I have a very simple Boost unit test as below:
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE myModule
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_CASE(universeInOrder)
{
...
0
votes
1answer
271 views
Linking errors when building against Boost Unit Test Framework
I am trying to use Boost Unit Test Framework by building a stand alone library as detailed here:
http://www.boost.org/doc/libs/1_35_0/libs/test/doc/components/utf/compilation.html
So I created a VC ...