From 40da1fbbdedc129b3fa301f7c457614a2f0c8a5c Mon Sep 17 00:00:00 2001 From: Raffi Enficiaud Date: Tue, 19 May 2015 17:26:24 +0200 Subject: [PATCH] Moving the summary to the section --- doc/testing_tools/testing_tools.qbk | 1 + doc/testing_tools/testing_tools_reference.qbk | 136 +----------------- 2 files changed, 2 insertions(+), 135 deletions(-) diff --git a/doc/testing_tools/testing_tools.qbk b/doc/testing_tools/testing_tools.qbk index b9ba3db4..708ce0ba 100644 --- a/doc/testing_tools/testing_tools.qbk +++ b/doc/testing_tools/testing_tools.qbk @@ -23,6 +23,7 @@ For a list of all supplied testing tools and usage examples, see the [include testing_floating_points.qbk] [include custom_predicates.qbk] [include testing_output_streams.qbk] +[include testing_tools_summary.qbk] [endsect] [/ testing tools] diff --git a/doc/testing_tools/testing_tools_reference.qbk b/doc/testing_tools/testing_tools_reference.qbk index af6802ab..92d57c7e 100644 --- a/doc/testing_tools/testing_tools_reference.qbk +++ b/doc/testing_tools/testing_tools_reference.qbk @@ -7,143 +7,9 @@ /] -[section:testing_tool_ref Reference] +[section:testing_tool_ref Testing tools] -[table - [ - [Assertions] - [Short description] - ] - - [/ ###############################################################################################] - [ - [__BOOST_TEST__] - [General purpose assertion macro.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL__] - [Simple validation of a boolean predicate value.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_BITWISE_EQUAL__] - [Bitwise equality test of two elements.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_EQUAL__] - [Equality test of two elements.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_EQUAL_COLLECTIONS__] - [Element-wise equality test of two collections.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_CLOSE__] - [Floating point comparison using a percentage of deviation.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_CLOSE_FRACTION__] - [Floating point comparison using the fraction of the compared operands.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_EXCEPTION__] - [Exception detection and validation check.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_GE__] - [Comparison of two values (with convenient reporting).] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_GT__] - [Comparison of two values (with convenient reporting).] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_LE__] - [Comparison of two values (with convenient reporting).] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_LT__] - [Comparison of two values (with convenient reporting).] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_MESSAGE__] - [Same as __BOOST_LEVEL__ with a custom message in case of failure.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_NE__] - [Comparison of two values (with convenient reporting).] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_NO_THROW__] - [Checks an expression does not throw any exception.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_PREDICATE__] - [Checks a list of arguments against a predicate functor.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_SMALL__] - [Checks a value is small according to a tolerance.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_LEVEL_THROW__] - [Checks an expression throws a specific type of expression.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_ERROR__] - [Logs an error message, fails but does not abort the current test.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_FAIL__] - [Logs an error message, fails and aborts the current test.] - ] - - [/ ###############################################################################################] - [ - [__BOOST_IS_DEFINED__] - [Checks at runtime whether or not the supplied preprocessor symbol is defined.] - ] - - -] [/ ###############################################################################################] [section:assertion_boost_test_super_macro `BOOST_TEST`]