¡@

Home 

c++ Programming Glossary: boost_auto_test_case

CMake: how to add Boost.Test cases with relative directories?

http://stackoverflow.com/questions/16857517/cmake-how-to-add-boost-test-cases-with-relative-directories

foo.cpp contains one BOOST_AUTO_TEST_SUITE and several BOOST_AUTO_TEST_CASE bar.cpp contains one BOOST_AUTO_TEST_SUITE and several BOOST_AUTO_TEST_CASE.. bar.cpp contains one BOOST_AUTO_TEST_SUITE and several BOOST_AUTO_TEST_CASE dir2 foo.cpp contains one BOOST_AUTO_TEST_SUITE and several.. foo.cpp contains one BOOST_AUTO_TEST_SUITE and several BOOST_AUTO_TEST_CASE bar.cpp contains one BOOST_AUTO_TEST_SUITE and several BOOST_AUTO_TEST_CASE..

How might I wrap the FindXFile-style APIs to the STL-style Iterator Pattern in C++?

http://stackoverflow.com/questions/2531874/how-might-i-wrap-the-findxfile-style-apis-to-the-stl-style-iterator-pattern-in-c

BOOST_CHECK begin IsDirectory begin BOOST_CHECK begin end BOOST_AUTO_TEST_CASE BasicEnumeration NonRecursiveIteratorAssertions fakeFunctor.. NonRecursiveIteratorAssertions fakeFunctor BOOST_AUTO_TEST_CASE NoRootDirectories fakeFunctor fakeData.pop_front fakeFunctor.. begin L C Windows testType end BOOST_CHECK begin end BOOST_AUTO_TEST_CASE Empty1 fakeFunctor fakeData.clear EmptyIteratorAssertions BOOST_AUTO_TEST_CASE..

Boost.Test: Looking for a working non-Trivial Test Suite Example / Tutorial

http://stackoverflow.com/questions/2906095/boost-test-looking-for-a-working-non-trivial-test-suite-example-tutorial

included unit_test.hpp BOOST_AUTO_TEST_SUITE test1_suite BOOST_AUTO_TEST_CASE Test1 BOOST_CHECK 2 1 BOOST_AUTO_TEST_SUITE_END test2.cpp #include.. included unit_test.hpp BOOST_AUTO_TEST_SUITE test2_suite BOOST_AUTO_TEST_CASE Test1 BOOST_CHECK 1 2 BOOST_AUTO_TEST_SUITE_END Then I compile.. boost test unit_test.hpp BOOST_AUTO_TEST_SUITE test1_suite BOOST_AUTO_TEST_CASE Test1 BOOST_CHECK 2 1 BOOST_AUTO_TEST_SUITE_END test2.cpp #define..

Standard library containers producing a lot of copies on rvalues in GCC

http://stackoverflow.com/questions/4865515/standard-library-containers-producing-a-lot-of-copies-on-rvalues-in-gcc

endl A operator A a std cout assign std endl return this BOOST_AUTO_TEST_CASE test_copy_semantics std vector A vec_a 3 This test just creates..

Helping getting started using Boost.Test

http://stackoverflow.com/questions/963158/helping-getting-started-using-boost-test

boost test unit_test.hpp BOOST_AUTO_TEST_SUITE Foo_Test BOOST_AUTO_TEST_CASE Foo1 Foo f BOOST_CHECK f.isValid BOOST_AUTO_TEST_CASE Foo2 Foo.. BOOST_AUTO_TEST_CASE Foo1 Foo f BOOST_CHECK f.isValid BOOST_AUTO_TEST_CASE Foo2 Foo f BOOST_CHECK f.baz 5 BOOST_AUTO_TEST_SUITE_END However..