2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-15 13:32:09 +00:00
Files
test/doc/test_output/testout_reference.qbk
Gennadiy Rozental b011e02349 copyright update
2015-10-19 14:14:43 +02:00

57 lines
2.0 KiB
Plaintext

[/
/ Copyright (c) 2003 Boost.Test contributors
/ Copyright (c) 2015 Raffi Enficiaud
/
/ Distributed under the Boost Software License, Version 1.0. (See accompanying
/ file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
/]
[section:testout_reference Controlling tests outputs]
[/ -------------------------------------------------------------------------------------------------- ]
[section:test_output_macro_checkpoint `BOOST_TEST_CHECKPOINT`]
Sets up a named check point.
[tip See the [link boost_test.test_output.checkpoints checkpoint] section for more details.]
[endsect]
[section:test_output_macro_passpoint `BOOST_TEST_PASSPOINT`]
Sets up an unnamed check point.
[tip See the [link boost_test.test_output.checkpoints checkpoint] section for more details.]
[endsect]
[section:test_output_macro_message `BOOST_TEST_MESSAGE`]
Outputs a custom message into the test log.
[tip See the [link boost_test.test_output.test_output_macro_message corresponding] section for more details.]
[endsect]
[section:test_output_macro_info `BOOST_TEST_INFO`]
Defines a message to be printed as part of the context of the first encountered assertion, if it fails. For more details see [link boost_test.test_output.contexts here].
[endsect]
[section:test_output_macro_context `BOOST_TEST_CONTEXT`]
Defines a scope and a message to be printed as part of the context of every failed assertion within the scope. For more details see [link boost_test.test_output.contexts here].
[endsect]
[section:test_output_macro_disable_type `BOOST_TEST_DONT_PRINT_LOG_VALUE`]
Disables the automatic printing of a value. This macro is relevant
* a type is used in a comparison assertion (such as __BOOST_LEVEL_GE__ for instance)
* when the type being compared does not implement a suitable `operator <<` for streaming out the value into the
test log stream
[tip See the [link boost_test.test_output.testing_tool_output_disable corresponding] section for more details.]
[endsect]
[endsect]