boost-test
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 ho[详细]
2023-01-17 05:35 分类:问答Boost.Test and Forking
I\'m using Boost.Test for Unit testing and am currently running various mock servers in separate threads which get launched from within each test.In order to more accurately test my code the mock serv[详细]
2023-01-05 03:16 分类:问答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 swit[详细]
2023-01-04 16:20 分类:问答Boost Test dynamically or statically linked?
We use Boost statically linked with our app but now I want 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[详细]
2023-01-03 12:44 分类:问答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开发者_StackOverflow社区.I have these configured to dump XML lo[详细]
2023-01-02 09:15 分类:问答How to process Boost.Test output with Eclipse
I\'m using Eclipse CDT and B开发者_如何学Pythonoost.Test(with Boost.Build). I would like Eclipse to parse output of Boost.Test generated during by run of test suites during build.[详细]
2022-12-24 18:15 分类:问答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[详细]
2022-12-22 05:54 分类:问答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 d[详细]
2022-12-15 16:53 分类:问答Can I use BOOST_CHECK only in unit tests?
Or Can I use it in regular code? If the answer is \"no\", then is there C++ library that will provide me with all the macros like CHECK_EQUAL, CHEC开发者_Go百科K_CLOSE, etc.?It is only meaningful in[详细]
2022-12-08 15:38 分类:问答