boost-test
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![详细]
2023-04-07 02:46 分类:问答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 http://www.boost.org/doc/libs/1_47_0/libs/test/doc/html/tutorials/new-year-res[详细]
2023-04-02 06:15 分类:问答Can I check my program's output with boost test?
Like in: void f() 开发者_如何学Go{ cout << \"blah\" << endl; } BOOST_AUTO_TEST_CASE(f) { f();[详细]
2023-02-19 00:10 分类:问答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).[详细]
2023-02-15 19:21 分类:问答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.[详细]
2023-02-08 17:54 分类:问答comparing QTest with other frameworks
Can you compare popular unit test frameworks for C++ w开发者_高级运维ith QTest of Qt? (cppunit, boost test, google test etc..)[详细]
2023-02-08 09:11 分类:问答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 wor[详细]
2023-01-29 07:24 分类:问答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:[详细]
2023-01-24 06:30 分类:问答Reporting an exception in Boost::test
Using the boost::test framework, is there a way to detect if an exception (of som开发者_运维问答e type) has been thrown from a function?Are you looking to test that a function correctly throws under s[详细]
2023-01-24 01:03 分类:问答Testing with boost
Can someone write step by step what to do to start using testing facilities from boost? 开发者_开发百科For example I have a class:[详细]
2023-01-18 05:42 分类:问答