Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

PrevUpHomeNext

Summary of the API for controlling the output

Macro

Short description

BOOST_TEST_MESSAGE

Custom message output

BOOST_TEST_DONT_PRINT_LOG_VALUE

Disabling the printing of a specific type in case of test failure

BOOST_TEST_CHECKPOINT

Indicates a named checkpoint that will be printed in case of failure

BOOST_TEST_PASSPOINT

Indicates an unnamed checkpoint that will be printed in case of failure

BOOST_TEST_INFO

Defines a message to be printed as part of the context of the first encountered assertion, if it fails

BOOST_TEST_CONTEXT

Defines a scope and a message to be printed as part of the context of every failed assertion within the scope

BOOST_TEST_INFO_SCOPE

Defines a sticky scoped version of BOOST_TEST_INFO that is attached to all the assertions coming after this declaration and within the current scope.


PrevUpHomeNext