442 lines
45 KiB
HTML
442 lines
45 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Boost.Test</title>
|
|
<link rel="stylesheet" href="boostbook.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
|
<link rel="home" href="index.html" title="Boost.Test">
|
|
<link rel="next" href="boost_test/intro.html" title="Introduction">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr>
|
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
|
|
<td align="center"><a href="../../../../index.html">Home</a></td>
|
|
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
|
<td align="center"><a href="../../../../more/index.htm">More</a></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav"><a accesskey="n" href="boost_test/intro.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a></div>
|
|
<div class="chapter">
|
|
<div class="titlepage"><div>
|
|
<div><h2 class="title">
|
|
<a name="boost_test"></a>Boost.Test</h2></div>
|
|
<div><div class="author"><h3 class="author">
|
|
<span class="firstname">Gennadiy</span> <span class="surname">Rozental</span>
|
|
</h3></div></div>
|
|
<div><div class="author"><h3 class="author">
|
|
<span class="firstname">Raffi</span> <span class="surname">Enficiaud</span>
|
|
</h3></div></div>
|
|
<div><p class="copyright">Copyright © 2001-2020 Boost.Test contributors</p></div>
|
|
<div><div class="legalnotice">
|
|
<a name="boost_test.legal"></a><p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div></div>
|
|
</div></div>
|
|
<div class="toc">
|
|
<p><b>Table of Contents</b></p>
|
|
<dl class="toc">
|
|
<dt><span class="section"><a href="boost_test/intro.html">Introduction</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/intro/design_rationale.html">Design rationale</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/intro/how_to_read.html">How to read this documentation</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/usage_variants.html">Usage variants</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization.html">Declaring and organizing
|
|
tests</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_cases.html">Test cases</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_cases/test_organization_nullary.html">Test
|
|
cases without parameters</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_cases/test_case_generation.html">Data-driven
|
|
test cases</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_cases/test_organization_templates.html">Template
|
|
test cases</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_cases/param_test.html">Parametrized
|
|
test cases</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_tree.html">Test tree</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_tree/test_suite.html">Test
|
|
suite</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_tree/master_test_suite.html">Master
|
|
test suite</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_tree/test_naming.html">Tests
|
|
naming</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/test_tree/test_tree_content.html">Test
|
|
tree content</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/decorators.html">Decorators</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/decorators/suite_level_decorators.html">Suite-level
|
|
decorators</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/decorators/explicit_decorator_declaration.html">Explicit
|
|
decorator declaration</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/fixtures.html">Fixtures</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/fixtures/models.html">Fixture
|
|
models</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/fixtures/case.html">Test case
|
|
fixture</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/fixtures/per_test_suite_fixture.html">Test
|
|
suite entry/exit fixture</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/fixtures/global.html">Global
|
|
fixture</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/tests_dependencies.html">Managing
|
|
test dependencies</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/tests_grouping.html">Grouping
|
|
tests into logical units by labels</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/enabling.html">Enabling or disabling
|
|
test unit execution</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/semantic.html">Adding semantic
|
|
to a test</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/tests_organization/summary_of_the_api_for_declaring.html">Summary
|
|
of the API for declaring and organizing tests</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/testing_tools.html">Writing unit tests</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/tools_assertion_severity_level.html">Assertion
|
|
severity level</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/boost_test_universal_macro.html">BOOST_TEST:
|
|
universal and general purpose assertions</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/reports.html">Reported information</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/extended_comparison.html">Extended
|
|
comparisons support</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/extended_comparison/floating_point.html">Floating
|
|
point comparison</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/extended_comparison/strings.html">Strings
|
|
and C-strings comparison</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/extended_comparison/collections.html">Collections
|
|
comparison</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/extended_comparison/bitwise.html">Bitwise
|
|
comparison</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/exception_correctness.html">Exception
|
|
correctness</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/timeout.html">Time-out for test cases</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/expected_failures.html">Expected
|
|
failures specification</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/custom_predicates.html">Custom predicate
|
|
support</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/output_stream_testing.html">Output
|
|
streams testing tool</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/internal_details.html"><code class="computeroutput"><span class="identifier">BOOST_TEST</span></code>: details on expressions</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/debugging.html">Debugging the assertions</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/testing_tools/summary.html">Summary of the API
|
|
for writing tests</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/test_output.html">Controlling outputs</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging.html">Tools
|
|
supports for logging</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging/testing_tool_output_disable.html">Logging
|
|
user defined types</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging/test_output_macro_message.html">Custom
|
|
messages</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging/checkpoints.html">Checkpoints
|
|
for accurate failure location</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging/contexts.html">Contexts</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_tools_support_for_logging/log_floating_points.html">Logging
|
|
floating point type numbers</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/test_output/log_formats.html">Log formats</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/test_output/log_formats/test_log_output.html">Test
|
|
log output</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/log_formats/log_human_readable_format.html">HRF:
|
|
Human readable log format</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/log_formats/log_xml_format.html">XML
|
|
log format</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/log_formats/log_junit_format.html">JUNIT
|
|
log format</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/test_output/report_formats.html">Report formats</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/test_output/report_formats/report_human_readable_format.html">Human
|
|
readable report format</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/report_formats/report_xml_format.html">XML
|
|
based report output format</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/test_output/logging_api.html">Logging API</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/test_output/logging_api/log_ct_output_stream_redirection.html">Log
|
|
output stream redirection</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/logging_api/log_ct_log_level.html">Log
|
|
level configuration</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/logging_api/log_ct_log_format.html">Predefined
|
|
log format selection</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/logging_api/custom_log_formatter.html">Custom
|
|
log format support</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/test_output/test_output_progress.html">Progress
|
|
display</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/test_output/summary.html">Summary of the API for
|
|
controlling the output</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/runtime_config.html">Runtime parameters</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/runtime_config/test_unit_filtering.html">Test unit
|
|
filtering</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/runtime_config/custom_command_line_arguments.html">Custom
|
|
command line arguments</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/runtime_config/summary.html">Summary of run-time
|
|
parameters</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios.html">Advanced Usage Scenarios</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/build_utf.html">Building the <span class="emphasis"><em>Unit
|
|
Test Framework</em></span></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/entry_point_overview.html">Test module's
|
|
entry point</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/test_module_init_overview.html">Test
|
|
module's initialization</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/test_module_runner_overview.html">Test
|
|
module runner</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/single_header_customizations.html">Header-only
|
|
variant customizations</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/single_header_customizations/multiple_translation_units.html">Header-only
|
|
with multiple translation units</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/single_header_customizations/entry_point.html">Customizing
|
|
the module's entry point</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/single_header_customizations/init_func.html">Customizing
|
|
the module's initialization function</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/static_lib_customizations.html">Static-library
|
|
variant customizations</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/static_lib_customizations/entry_point.html">Customizing
|
|
the module's entry point</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/static_lib_customizations/init_func.html">Customizing
|
|
the module's initialization function</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/shared_lib_customizations.html">Shared-library
|
|
variant customizations</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/shared_lib_customizations/entry_point.html">Customizing
|
|
the module's entry point</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/shared_lib_customizations/init_func.html">Customizing
|
|
the module's initialization function</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/external_test_runner.html">The external
|
|
test runner usage variant</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/adv_scenarios/obsolete_init_func.html">The obsolete
|
|
initialization function</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations.html">Practical
|
|
usage recommendations</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/general.html">General</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/ide_usage_recommendations.html">IDE
|
|
usage recommendations</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/command_line_usage_recommendatio.html">Command
|
|
line usage recommendations</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/tutorials.html">Tutorials</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/tutorials/bt_and_tdd.html">Test
|
|
driven development with Boost.Test</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/tutorials/hello.html">A
|
|
testing framework, what for?</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/practical_usage_recommendations/web_wisdom.html">Web
|
|
Wisdom</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/section_faq.html">Frequently Asked Questions</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/section_glossary.html">Glossary</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/change_log.html">Change log</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/acknowledgements.html">Acknowledgements</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference.html"><span class="emphasis"><em>Unit Test Framework</em></span>
|
|
API reference</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference.html">Tests declaration
|
|
and organization</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_CASE</span></code> and <code class="computeroutput"><span class="identifier">BOOST_TEST_CASE_NAME</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_auto_test_case.html"><code class="computeroutput"><span class="identifier">BOOST_AUTO_TEST_CASE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case_auto_template.html"><code class="computeroutput"><span class="identifier">BOOST_AUTO_TEST_CASE_TEMPLATE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case_template.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_CASE_TEMPLATE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case_template_function.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_CASE_TEMPLATE_FUNCTION</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case_parameter.html"><code class="computeroutput"><span class="identifier">BOOST_PARAM_TEST_CASE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_dataset.html"><code class="computeroutput"><span class="identifier">BOOST_DATA_TEST_CASE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_dataset_fixture.html"><code class="computeroutput"><span class="identifier">BOOST_DATA_TEST_CASE_F</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_suite.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_SUITE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_auto_test_suite.html"><code class="computeroutput"><span class="identifier">BOOST_AUTO_TEST_SUITE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_auto_test_suite_end.html"><code class="computeroutput"><span class="identifier">BOOST_AUTO_TEST_SUITE_END</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_case_fixture.html"><code class="computeroutput"><span class="identifier">BOOST_FIXTURE_TEST_CASE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_suite_fixture.html"><code class="computeroutput"><span class="identifier">BOOST_FIXTURE_TEST_SUITE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_global_fixture.html"><code class="computeroutput"><span class="identifier">BOOST_GLOBAL_FIXTURE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_global_fixture.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_GLOBAL_FIXTURE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/test_org_boost_test_decorator.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_DECORATOR</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_depends_on.html">depends_on
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_description.html">description
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_enabled.html">enabled
|
|
/ disabled (decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_enable_if.html">enable_if
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_fixture.html">fixture
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_label.html">label
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/test_org_reference/decorator_precondition.html">precondition
|
|
(decorator)</a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref.html">Reference
|
|
API for writing tests</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_test_universal_macro.html"><code class="computeroutput"><span class="identifier">BOOST_TEST</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/decorator_expected_failures.html">expected_failures
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/decorator_timeout.html">timeout
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/decorator_tolerance.html">tolerance
|
|
(decorator)</a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_bitwise_eq.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_BITWISE_EQUAL</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_eq.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_EQUAL</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_eq_collections.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_EQUAL_COLLECTIONS</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_close.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_CLOSE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_close_fraction.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_CLOSE_FRACTION</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_ge.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_GE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_gt.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_GT</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_le.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_LE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_lt.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_LT</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_message.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_MESSAGE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_ne.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_NE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_predicate.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_PREDICATE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_no_throw.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_NO_THROW</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_throw.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_THROW</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_exception.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_EXCEPTION</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_level_small.html"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special"><</span><span class="identifier">level</span><span class="special">></span><span class="identifier">_SMALL</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/test_org_boost_test_case_expected_failure.html"><code class="computeroutput"><span class="identifier">BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_error.html"><code class="computeroutput"><span class="identifier">BOOST_ERROR</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_fail.html"><code class="computeroutput"><span class="identifier">BOOST_FAIL</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_boost_is_defined.html"><code class="computeroutput"><span class="identifier">BOOST_IS_DEFINED</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_control_under_debugger.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_TOOLS_UNDER_DEBUGGER</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testing_tool_ref/assertion_control_under_debuggable.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_TOOLS_DEBUGGABLE</span></code></a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference.html">Controlling
|
|
tests outputs</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_checkpoint.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_CHECKPOINT</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_passpoint.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_PASSPOINT</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_message.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_MESSAGE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_info.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_INFO</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_context.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_CONTEXT</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_context_sticky.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_INFO_SCOPE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/testout_reference/test_output_macro_disable_type.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_DONT_PRINT_LOG_VALUE</span></code></a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference.html">Runtime
|
|
parameters reference</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/auto_dbg.html"><code class="computeroutput"><span class="identifier">auto_start_dbg</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/build_info.html"><code class="computeroutput"><span class="identifier">build_info</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/catch_system.html"><code class="computeroutput"><span class="identifier">catch_system_errors</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/color_output.html"><code class="computeroutput"><span class="identifier">color_output</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/detect_fp_exceptions.html"><code class="computeroutput"><span class="identifier">detect_fp_exceptions</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/detect_memory_leaks.html"><code class="computeroutput"><span class="identifier">detect_memory_leaks</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/help.html"><code class="computeroutput"><span class="identifier">help</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/list_content.html"><code class="computeroutput"><span class="identifier">list_content</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/list_labels.html"><code class="computeroutput"><span class="identifier">list_labels</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/log_format.html"><code class="computeroutput"><span class="identifier">log_format</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/log_level.html"><code class="computeroutput"><span class="identifier">log_level</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/log_sink.html"><code class="computeroutput"><span class="identifier">log_sink</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/logger.html"><code class="computeroutput"><span class="identifier">logger</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/output_format.html"><code class="computeroutput"><span class="identifier">output_format</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/random.html"><code class="computeroutput"><span class="identifier">random</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/report_format.html"><code class="computeroutput"><span class="identifier">report_format</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/report_level.html"><code class="computeroutput"><span class="identifier">report_level</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/report_memory_leaks_to.html"><code class="computeroutput"><span class="identifier">report_memory_leaks_to</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/report_sink.html"><code class="computeroutput"><span class="identifier">report_sink</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/result_code.html"><code class="computeroutput"><span class="identifier">result_code</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/run_test.html"><code class="computeroutput"><span class="identifier">run_test</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/save_pattern.html"><code class="computeroutput"><span class="identifier">save_pattern</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/show_progress.html"><code class="computeroutput"><span class="identifier">show_progress</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/use_alt_stack.html"><code class="computeroutput"><span class="identifier">use_alt_stack</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/usage.html"><code class="computeroutput"><span class="identifier">usage</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/rt_param_reference/wait_for_debugger.html"><code class="computeroutput"><span class="identifier">wait_for_debugger</span></code></a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references.html">Build scenarios
|
|
and behaviors</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_main_macro.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_MAIN</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_module_macro.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_MODULE</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_alternative_init_macro.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_ALTERNATIVE_INIT_API</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_no_lib.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_NO_LIB</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_dyn_link.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_DYN_LINK</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_no_main.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_NO_MAIN</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/link_boost_test_global_configuration.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_GLOBAL_CONFIGURATION</span></code></a></span></dt>
|
|
<dt><span class="section"><a href="boost_test/utf_reference/link_references/config_disable_alt_stack.html"><code class="computeroutput"><span class="identifier">BOOST_TEST_DISABLE_ALT_STACK</span></code></a></span></dt>
|
|
</dl></dd>
|
|
<dt><span class="section"><a href="boost_test/reference.html">Reference</a></span></dt>
|
|
<dd><dl>
|
|
<dt><span class="section"><a href="header/boost/test/data/config_hpp.html">Header <boost/test/data/config.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/for_each_sample_hpp.html">Header <boost/test/data/for_each_sample.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/array_hpp.html">Header <boost/test/data/monomorphic/array.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/collection_hpp.html">Header <boost/test/data/monomorphic/collection.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/delayed_hpp.html">Header <boost/test/data/monomorphic/delayed.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/fwd_hpp.html">Header <boost/test/data/monomorphic/fwd.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/generate_hpp.html">Header <boost/test/data/monomorphic/generate.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/generators_hpp.html">Header <boost/test/data/monomorphic/generators.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/generators/keywords_hpp.html">Header <boost/test/data/monomorphic/generators/keywords.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/generators/random_hpp.html">Header <boost/test/data/monomorphic/generators/random.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/generators/xrange_hpp.html">Header <boost/test/data/monomorphic/generators/xrange.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/grid_hpp.html">Header <boost/test/data/monomorphic/grid.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/initializer_list_hpp.html">Header <boost/test/data/monomorphic/initializer_list.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/join_hpp.html">Header <boost/test/data/monomorphic/join.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/singleton_hpp.html">Header <boost/test/data/monomorphic/singleton.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/monomorphic/zip_hpp.html">Header <boost/test/data/monomorphic/zip.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/size_hpp.html">Header <boost/test/data/size.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/data/test_case_hpp.html">Header <boost/test/data/test_case.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/debug_hpp.html">Header <boost/test/debug.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/debug_config_hpp.html">Header <boost/test/debug_config.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/detail/global_typedef_hpp.html">Header <boost/test/detail/global_typedef.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/execution_monitor_hpp.html">Header <boost/test/execution_monitor.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/framework_hpp.html">Header <boost/test/framework.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/output/compiler_log_formatter_hpp.html">Header <boost/test/output/compiler_log_formatter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/output/plain_report_formatter_hpp.html">Header <boost/test/output/plain_report_formatter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/output/xml_log_formatter_hpp.html">Header <boost/test/output/xml_log_formatter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/output/xml_report_formatter_hpp.html">Header <boost/test/output/xml_report_formatter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/parameterized_test_hpp.html">Header <boost/test/parameterized_test.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/progress_monitor_hpp.html">Header <boost/test/progress_monitor.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/results_collector_hpp.html">Header <boost/test/results_collector.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/results_reporter_hpp.html">Header <boost/test/results_reporter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/assertion_result_hpp.html">Header <boost/test/tools/assertion_result.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/detail/bitwise_manip_hpp.html">Header <boost/test/tools/detail/bitwise_manip.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/detail/lexicographic_manip_hpp.html">Header <boost/test/tools/detail/lexicographic_manip.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/detail/per_element_manip_hpp.html">Header <boost/test/tools/detail/per_element_manip.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/detail/tolerance_manip_hpp.html">Header <boost/test/tools/detail/tolerance_manip.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/floating_point_comparison_hpp.html">Header <boost/test/tools/floating_point_comparison.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tools/output_test_stream_hpp.html">Header <boost/test/tools/output_test_stream.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tree/observer_hpp.html">Header <boost/test/tree/observer.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/tree/test_unit_hpp.html">Header <boost/test/tree/test_unit.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/unit_test_hpp.html">Header <boost/test/unit_test.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/unit_test_log_hpp.html">Header <boost/test/unit_test_log.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/unit_test_log_formatter_hpp.html">Header <boost/test/unit_test_log_formatter.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/unit_test_parameters_hpp.html">Header <boost/test/unit_test_parameters.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/utils/algorithm_hpp.html">Header <boost/test/utils/algorithm.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/utils/is_forward_iterable_hpp.html">Header <boost/test/utils/is_forward_iterable.hpp></a></span></dt>
|
|
<dt><span class="section"><a href="header/boost/test/utils/named_params_hpp.html">Header <boost/test/utils/named_params.hpp></a></span></dt>
|
|
</dl></dd>
|
|
</dl></dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
<td align="left"><p><small>Last revised: April 13, 2021 at 16:25:16 GMT</small></p></td>
|
|
<td align="right"><div class="copyright-footer"></div></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav"><a accesskey="n" href="boost_test/intro.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a></div>
|
|
</body>
|
|
</html>
|