The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
14 views

boost.test - distinguishing test results from different build-configurations of same project

I have a VC++ project which has two build configurations, each causes a different 3rd-party library to be used. e.g Release_A & Release_B use libraries A & B, and wrap their functionality. We ...
0
votes
1answer
52 views

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 boost.test's XML output format, but no canonical reference. Some people say we simply ...
0
votes
0answers
16 views

Setup Visual Studio 2012 and Boost test

I try to setup Visual Studio 2012 and Boost test to work together. But I have some problem at the last stage. I use this aticle to setup VS. When a build project in Debug and Release ...
1
vote
0answers
25 views

Using BoostTest with C++/CLI : possible or not?

I have a Visual Studio project containing the code of a program (a model). I have created an other project to put the boost tests in it. The problem is that I can't get it to work. I can use the ...
1
vote
3answers
49 views

How to cancel “fatal error” detection in BOOST TEST

I get an error: unknown location(0): fatal error in "suite_1_test_1": child has exited; pid: 5817; uid: 0; exit value: 255 Inside suite_1_test_1 I run a program A with execvp() (after fork()), which ...
0
votes
1answer
60 views

Is it possible to initialize the fixture only once and use it in multiple test cases?

Is it possible to have the fixture initialized only once and use it in multiple test cases within the same test suite? In the following example, fixture is constructed and destructed multiple times: ...
0
votes
0answers
28 views

Difference between CLOSE and CLOSE_FRACTION

Can anybody explain the difference between BOOST_CHECK_CLOSE and BOOST_CHECK_CLOSE_FRACTION? I just skimmed through the boost.test Testing Tools Reference and I'm pretty sure that they have an equal ...
0
votes
2answers
63 views

BOOST_CHECK_EQUAL_COLLECTIONS in Google Test

I have been trying to find an assertion in the Google C++ Testing Framework / gtest which is equivalent to the BOOST_CHECK_EQUAL_COLLECTIONS assertion found in the Boost Test Library. However; ...
0
votes
0answers
66 views

Is there a way to run boost.test tests in the chunks of a predefined size

Given a huge monolith unittests.exe containing a hundreds of tests. Running them all in one go would take a long time. However, if it were possible to run the tests from 1st to 100th in first command ...
1
vote
2answers
69 views

BOOST_CHECK_NO_THROW how to get exception message printed

When I test a method using BOOST_CHECK_NO_THROW( method_to_test() ); and an exception is thrown, it displays that an exception was thrown, but never the exception's message like this: ...
0
votes
0answers
60 views

Create a window in a Test Case of boost::test

I work with VS2005 and I use boost::test to test my C++ class. I need a CWindow or QWidget (in background, hidden, to attach my class). I'm actually using a CONSOLE subsystem to run my boost tests. Is ...
0
votes
1answer
90 views

boost test unit can not call mpi function

I have looked throughfully around but could not find any reference to this problem. I wrote a c++ program that I am testing with boost/unit. The serial version works fine and the unit test is ...
0
votes
1answer
32 views

A version of BOOST_CHECK_CLOSE that deals with absolute differences

Is there a version of BOOST_CHECK_CLOSE that works with absolute differences as opposed to percentage? In some cases absolute differences make more sense, e.g. when we are working with money (yeah, I ...
0
votes
1answer
145 views

trouble building boost test with cmake

I'm rather new to C++, Boost test, and CMake, so please pardon my stumblings here. Here is my top level CMakeLists.txt cmake_minimum_required(VERSION 2.8) project(JANKEN) set ( CMAKE_CXX_COMPILER ...
0
votes
0answers
46 views

Add context information to a Boost check exception

I want a way to add contextual information to the BOOST_CHECK statements. I create a function which checks several aspects of its input. Should an error occur at any location I'd like to report which ...
1
vote
1answer
251 views

boost test and async IO : memory access violation at address : no mapping at fault address

i am trying to setup a boost test for async I/O for tcpip. my function to send tcp msg: int TcpClient::sendMsgToServer(string msg) { if (isConnected == true) { Logger::debug("Asynch ...
0
votes
1answer
146 views

Boost tests in Visual Studio

I am trying to compile trivial unit test project in Visual Studio 2010. I have a testrunner.cpp: #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE "BaumWelch Unit Tests" #include ...
1
vote
1answer
53 views

How can I check if the first 15 relevant digits in double values are the same in Boost Test framework?

I tried to use what seems to be designed for the job: BOOST_CHECK_CLOSE, so I have the following test: BOOST_AUTO_TEST_CASE( MultivariateNormalDensityTest ) { double TOLLERANCE=1e-14; ...
2
votes
1answer
402 views

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). I am using CMake to build this. As a minimal example I have the following files: ...
0
votes
0answers
78 views

Select (sub)BOOST_AUTO_TEST_SUITE to compile and execute using boost build

To reduce compilation-time/ dependencies/ complexity/ ..., I want to execute a specific sub-testsuite. For better explanation, lets use a simple example: test.cpp: #define BOOST_TEST_MODULE simple ...
0
votes
0answers
133 views

Boost Test: How to write parameterized test cases

I've got a boost test case. Most lines of this test case are executed regardless of the parameters. But there are parts which are executed based on the provided parameter. I want to avoid writing two ...
0
votes
1answer
228 views

Running BOOST unit tests from Visual Studio 2010

I am just starting to work with QuantLib project. There are quite a few BOOST unit tests defined, hence the question: is there an easy way to run these tests selectively from Visual Studio (and see ...
1
vote
1answer
288 views

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 and I need to specify things like servername, user, pass, etc... When I pass my test ...
1
vote
1answer
388 views

boost test - 'undefined reference' errors

I have two simple files: runner.cpp: #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE Main #include <boost/test/unit_test.hpp> and test1.cpp: #define BOOST_TEST_DYN_LINK #ifdef ...
1
vote
1answer
215 views

Boost unit tests throwing exceptions in Visual Studio 2012

I recently upgraded my laptop to Windows 8 so that I can develop for W8 and WP8. I had some projects that were created with Visual Studio 2010 that used Boost.Test for unit testing. I tried converting ...
2
votes
1answer
72 views

Using boost::phoenix to adapt a BOOST_CHECK macro

During testing when using c++ 11 I have used the following construct: std::for_each( coll.begin(), coll.end(), [ &obj, expRes ]( const value_type& val ) { BOOST_CHECK_EQUAL( ...
10
votes
2answers
227 views

Where to find the parsed Boost.Test output in Eclipse

There is already a thread here that partially answers my question . On Eclipse 3.7.2 I followed the approach provided there and I could successfully accomplish the steps creating and setting up a new ...
1
vote
2answers
202 views

How to write a script to perform automatic test with boost::unit_test?

I am a newbie of automatic unit test in C++. I have followed the instruction of boost::unit_test and finished a test scheme by calling function unit_test_main in boost::unit_test. It is no problem for ...
1
vote
2answers
88 views

testing new operator fail

I've created a class in which there's some new operator in the constructor. I've created the guard into the constructor to manage new operator failing, but now I want to test it. As example, I've a ...
4
votes
4answers
324 views

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 each test is highly parallel, I want them to run concurrently with all my cores. Is there a way to do ...
0
votes
1answer
59 views

Boost Testing Framework return code

What is the meaning of return code of unit_test_main function from Boost Testing Framework ?
3
votes
2answers
68 views

Linker chooses “wrong” main with Boost.Test

When using Boost.Test, there is generally no need to define a main() function, since Boost.Test provides one itself. I recently had to convert my project to use static linking of 3rd party ...
0
votes
0answers
66 views

boost unit test cpp file can not see one object file in a library

I have a test.cpp file, written for using boost unit test. test.cpp : #define BOOST_TEST_DYN_LINK #include <boost/test/unit_test.hpp> ......... I am trying to linking this test.cpp with a ...
1
vote
3answers
114 views

When to use manual registration in Boost Test library?

I always used automatic registration with Boost Test. Now I wonder, what manual registration is for ? Are there cases that automatic registration cannot handle ? Additional remark, this time I will ...
1
vote
1answer
107 views

Boost.Test custom test summary

Is there a way to read the test results (all assertions that either passed ot failed) at runtime using Boost Unit Testing framework ? What I want is to produce custom test log and output it to the ...
3
votes
1answer
157 views

Should i put unit tests in a separate library? Separate subdirectory?

I have a large library of code which has a few (much too few) unit tests; i am adding code to the library, trying to make unit tests for the new code (i also want to add unit tests for old code in ...
1
vote
1answer
181 views

BOOST_CHECK_EQUAL with pair<int, int> and custom operator <<

When attempting to do a BOOST_CHECK_EQUAL(pair, pair), gcc doesnt find the stream operator for pair, inspite of declaring it. The funny thing is that std::out finds the operator. ostream& ...
0
votes
0answers
49 views

link problems when using a test dll and a production dll

I want to write unit tests for internal components of a DLL, and in the testing project I can only access exported symbols. I want to test internal classes also, and I don't want to export them just ...
3
votes
1answer
198 views

How to print test summary using boost unit test

Is there a way to print a summary of the tests run in boost unit test. In particular, can a listing of the failed tests be made? I'm having a hard time locating failing tests in the output ...
0
votes
1answer
112 views

Using BoostTest to run unit tests multiple times without quitting test runner

I want to use Boost Test to run unit tests multiple times without quitting the test runner. Here is the pseudo-code to demonstrate what I want to do: void main() { for(int i = 0; i < 10; ++i) ...
0
votes
1answer
109 views

In Boost.Test, how to obtain the name of current test?

In Boost.Test, how can I obtain the name of the current auto test case? Example: #include <boost/test/unit_test.hpp> BOOST_AUTO_TEST_CASE(MyTest) { std::cerr << "Starting " << ...
1
vote
2answers
190 views

Int template member function within a template class

Duplicate question of this. I have a class like this: template <class T> class foo { public: foo(){} template <int S> void bar (){} } If this class is called ...
3
votes
2answers
236 views

How to tell Boost.Test to stop on first failing test case?

I've got a number of Boost test cases ordered in several test suites. Some test cases have one, some more than one check. However, when executing all tests, they all get executed – no matter how many ...
0
votes
1answer
105 views

What's the Boost test framework's equivalence of std::cout?

I understand that in my unit test I should do BOOST_TEST_MESSAGE("message"); instead of std::cout << "message"; but what if for an function that's expecting std::ostream& ? so ...
1
vote
3answers
824 views

Boost Test with CMake - undefined main

I'm having trouble building a little program that uses Boost.Test on my Mac with a Boost installed by MacPorts at /opt/local/lib/ Here's my minimal source file, test.cpp: #define BOOST_TEST_MODULE ...
1
vote
0answers
132 views

Documenting Boost.Test test cases

Is there any way to use documentary comments for test-cases defined using Boost.Test macros ? Can I use Doxygen-styled comments, will they be parsed correctly?
0
votes
2answers
80 views

boost::test and verifying code is executed

I have a test that is successful (among other things) if a certain callback is run exactly N times. Of course, I can write a bit of code to count how many times the callback is run and then execute a ...
0
votes
1answer
338 views

init_unit_test_suite redefinition error

I am trying to compile an example from boost::test tutorial: #include <boost/test/included/unit_test.hpp> using namespace boost::unit_test; void test_case1() { /* : */ } test_suite* ...
0
votes
1answer
187 views

Testing a DLL with Boost::Test from command line

I am developing a DLL in C++ and want to perform unit testing of that DLL using the Boost Test Libraries. I found here that test_runner.exe can be used. How to obtain test_runner.exe? Are there any ...
0
votes
1answer
106 views

BOOST_CHECK_EQUAL_COLLECTIONS with unsigned char outputs non-printable characters on mismatch

Is there any way to change the unsigned char output formatting of BOOST_CHECK_EQUAL_COLLECTIONS? I'm using Boost.Test 1.37.0 to validate values in an unsigned char array: // result.Message is a ...

1 2 3