Tagged Questions
The boost-test tag has no wiki summary.
29
votes
11answers
10k views
Comparison of c++ unit test frameworks
I know there are already a few questions regarding recomendations for c++ unit test frameworks, but all the answers did not help as they just recomend one of the frameworks but do not provide any ...
11
votes
2answers
2k views
How do you specify that an exception should be expected using Boost.Test?
I have a Boost unit test case which causes the object under test to throw an exception (that's the test, to cause an exception). How do I specify in the test to expect that particular exception.
I ...
9
votes
2answers
2k views
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 more parts of the boost library I had a short look on boost.test and I'm wondering now if I should switch ...
8
votes
1answer
355 views
Boost.Test tests on a static library
I'm using Boost.Test for unit testing.
Because of several reasons, I would like to write the unit test cases on different static libraries.
The problem is that when I do this, the automatic ...
8
votes
3answers
2k views
Visual Studio and Boost::Test
I'm getting started with Boost::Test driven development (in C++), and I'm retrofitting one of my older projects with Unit Tests. My question is -- where do I add the unit test code? The syntax for the ...
7
votes
3answers
2k views
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 can I achieve that? In Boost.Build, I could do it as follows:
import testing ;
use-project /my_lib ...
6
votes
6answers
479 views
Unit Testing Private Method in Resource Managing Class (C++)
I previously asked this question under another name but deleted it because I didn't explain it very well.
Let's say I have a class which manages a file. Let's say that this class treats the file as ...
5
votes
2answers
262 views
Boost.Test error messages are no more shown in error list of VS2010
I am using Boost.Test Unit Test Framework for native C++ projects. All is working fine, but I've got one issue after upgrading to Visual Studio 2010: The messages about failed tests are no more shown ...
5
votes
1answer
899 views
How to process Boost.Test output with Eclipse
I'm using Eclipse CDT and Boost.Test(with Boost.Build).
I would like Eclipse to parse output of Boost.Test generated during by run of test suites during build.
Does anybody know how to achieve this? ...
4
votes
2answers
329 views
Problem with BOOST_CHECK_CLOSE_FRACTION
I'm using the Boost::Test library, and I am trying to check if an actual percent value is close to the expected value:
BOOST_CHECK_CLOSE_FRACTION(
items[i].ExpectedPercent,
...
3
votes
1answer
157 views
boost test case for function taking user input
I have a function that takes in user input via std::cin:
std::getline(std::cin, in);
and creates a corresponding data structure by matching it with a regular expression. The function then returns ...
3
votes
1answer
427 views
Boost Test dynamically or statically linked?
We use Boost statically linked with our app but now I wan't to use Boost Test with an external test runner and that requires the tests themselves to link dynamically with Boost.Test through the use of ...
3
votes
2answers
296 views
Boost Test register exception translator
Does anybody know how to register my custom exception translator when using auto test cases in Boost.Test? I've found some examples (very few actually), but they do not show how to use this feature ...
3
votes
1answer
1k views
Boost::Test — generation of Main()?
I'm a bit confused on setting up the boost test library. Here is my code:
#include "stdafx.h"
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE pevUnitTest
#include ...
3
votes
1answer
271 views
Unit-tests for Boost.Spirit
I'm new to Boost.Spirit and Boost.Test and I would like to know how you verify the correctness of your grammars. Below is a simplified version of how I do it at the moment and I'm pretty sure that ...
2
votes
1answer
60 views
How to expect a static_assert failure and deal with it using Boost.Test framework?
If I have a method accepting a template parameter that should be convertible to, base_of, or same type as the type that is returned, how should I do?
For instance, consider this method:
template ...
2
votes
1answer
68 views
How to handle Integer Division By Zero exception using Boost.Test library?
I'm writing unit tests using Boost.Test against some old C math library. One of tested functions in known to raise Integer Division By Zero system exception for some specified input. Let's say it's ...
2
votes
3answers
165 views
Memory leak detection with boost::test
I try to enable msvc memory leak detection with line number like this snippet I found here:
Detected memory leaks!
Dumping objects ->
C:\PROGRAM FILES\VISUAL ...
2
votes
1answer
189 views
Can I check my program's output with boost test?
Like in:
void f()
{
cout << "blah" << endl;
}
BOOST_AUTO_TEST_CASE(f)
{
f();
// This would be a beauty
// BOOST_CHECK_PROGRAM_OUTPUT_MATCH("blah");
}
2
votes
4answers
292 views
CoInitializeEx for a boost::test::unit_test
The other day, I decided that I needed to know about test driven development for C++ on the Windows platform (using Visual Studio 2010 Premium).
I had a look around before settling on trying out ...
2
votes
2answers
253 views
What is the better way to generate test report in a file using BOOST.Test?
I know by default report is directed to standard-error, and so one has to redirect it to a file.
My question is shall we do this inside a global fixture? Which isn't seem to be working for me some ...
2
votes
1answer
242 views
How global fixtures work in BOOST.Test?
I have started using BOOST recently for unit testing.
Just need one clarification on global fixtures.
When it got executed? ... for each test module, or each test suite or each test case?
Will it be ...
2
votes
5answers
226 views
Can I cause a compile error on “too few initializers”?
I am using an aggregate initializer to set up a block of static data for a unit test.
I would like to use the array size as the expected number of elements, but this can fail if too few initializers ...
2
votes
4answers
908 views
Anyone have an XSL to convert Boost.Test XML logs to a presentable format?
I have some C++ projects running through cruisecontrol.net. As a part of the build process, we compile and run Boost.Test unit test suites. I have these configured to dump XML log files. While the ...
2
votes
4answers
903 views
Using boost test with Visual Studio
I am trying to use Boost Test to add some much needed unit tests to my code. However I can't seem to get it to work. Right now I have the following code
#include <Drawing.h>
#define ...
1
vote
1answer
49 views
boost unit test - list available tests
I've written some scripts to automate the running of our unit tests, written using the boost unit testing framework. I'd like to add functionality to allow the selection and subsequent running of a ...
1
vote
1answer
37 views
boost-test initialization for each suite (not case)
I need to init some variables, which are "global" inside a BOOST_AUTO_TEST_SUITE
so their constructors will be called when the suite starts and their destructors will be called right after the last ...
1
vote
1answer
31 views
Difference between boost.test headers
What is the difference between the headers boost/test/unit_test.hpp and boost/test/included/unit_test.hpp? Both appear to work in my project and I am unsure which I should be using.
1
vote
1answer
103 views
Boost Test Library run suite twice with different “parameters”
I have a suite of tests that can be run in a few different modes. Other than some global configuration, or a fixture config, the test case code is the same.
Is there some way in the boost test ...
1
vote
1answer
151 views
Unit testing non-exported classes in a DLL
We develop a C++ application using Visual Studio 2008 and unit test using Boost.Test. At the moment, we have a separate solution which contains our unit tests.
Many of our projects in the core ...
1
vote
1answer
615 views
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 built the unit test. Here's the build output:
2>------ Build started: Project: ...
1
vote
1answer
294 views
How to set which Boost unit test to run
I am trying to use boost-test, and in particular boost unit testing.
I clearly don't understand how is the main function generated and called, all the tutorial says is to define a module and write a ...
1
vote
2answers
328 views
Testing a DLL with Boost::Test?
I am developing a DLL in C++ and want to perform unit testing of that DLL using the Boost Test Libraries. I read the Boost test manual thoroughly but since I am new, I have the following question:
...
1
vote
1answer
232 views
What is a free function in boost::test?
I am new to Boost::Test and currently reading boost::test manual for creating unit test code for my c++ Program.
While reading, I came across a term "free function". What i understand is that a free ...
1
vote
2answers
223 views
problem with boost.test with old version
I'm trying to use boost.test on a remote system with boost 1.33.1. On my pc this little example from http://www.boost.org/doc/libs/1_42_0/libs/test/doc/html/tutorials/hello-the-testing-world.html ...
1
vote
2answers
135 views
I don't want to stop test when access violation in test with boost library
When occur to access violation in unit test with boost test library.
and then, test was aborted, and finished.
But, I don't want to stop the unit test. Just I want to get exception or notification.
...
1
vote
1answer
106 views
using the testcase name in output file names
I use boost::test to run integration tests on a class that creates directories and files. I would like
these files to be named test-case specific so if I run into trouble I can easily find which test ...
1
vote
1answer
256 views
Reporting an exception in Boost::test
Is there a way to detect if exception (and of what type) has been thrown from a fnc using boost::test framework?
1
vote
1answer
173 views
Exception Error at the line BOOST_AUTO_TEST_SUITE_END()
i have a problem with the boost-test from my teacher.
When i'm debugging my project i get an error at this Line:
BOOST_AUTO_TEST_SUITE_END()
The Exception is the following:
0x7521b727 ...
1
vote
1answer
211 views
Compiler complains about BOOST_CHECK_THROW on constructor
The following does not compile:
class Foo {
public:
Foo( boost::shared_ptr< Bar > arg );
};
// in test-case
boost::shared_ptr< Bar > bar;
BOOST_CHECK_THROW( Foo( bar ), ...
1
vote
2answers
161 views
boost-test application initialisation
I'm just getting stated with boost-test and unit testing in general with a new application, and I am not sure how to handle the applications initialisation (eg loading config files, connecting to a ...
1
vote
1answer
544 views
Equivalent of CppUnit protectors for boost::test?
I've used both CppUnit and boost::test for C++ unittesting. Generally I prefer boost::test, mainly because the auto-test macros minimise the effort to setup tests. But there's one thing I really ...
0
votes
1answer
43 views
Function refuses to work in Boost test function
I cant understand why in the class constructor I can call this function but when called in the test function, it errors out with
E:\Projects\NasuTek-Plugin-Engine\tests\CheckAddonEngine.cpp:64: ...
0
votes
0answers
59 views
boost::test, junit XML output
I select a framework for unit tests in C++
The best (for me) solution is boost::test, because it goes in boost :)
But there is 1 problem - the framework must be able to generate XML output in JUnit ...
0
votes
1answer
131 views
boost test library: Multiple definition error
I'm trying to test a library that I've done (Calculus), in QTCreator for Windows.
I've created a main file, and a class in a separate file for the testing. If I compile the example found in ...
0
votes
0answers
13 views
Avoid code execution while executing tests
I have a boost test suite that loads some classes from the main code and do some tests.
I would like to avoid some parts of code to execute in the class constructor if executing tests. I guess there ...
0
votes
1answer
58 views
Problem in using Boost Unit Test
I want to start to use Boost Test library to create tests for my application.
Following the tutorial that I've found at ...
0
votes
1answer
162 views
Boost test case and suite fixtures in manually defined suite tree
Using Boost 1.46.1 on Windows x86, Android TI 2.2
I have defined my own test suite tree, since I need the user to choose order of the tests. although I'm aware the tests should be independent, this ...
0
votes
1answer
218 views
No Output from Boost Test
I am trying to implement unit test with boost test libraries. I started by reading the manual at the boost site. After this i make a simple test program in one of my already existing project. The only ...
0
votes
1answer
322 views
comparing QTest with other frameworks
Can you compare popular unit test frameworks for C++ with QTest of Qt?
(cppunit, boost test, google test etc..)
What are the advantages disadvantages?
Thank you.
note: GUI test is not very ...