Components
- The Execution Monitor - a basic exception and error detection and reporting
facility for use in both production and test programs. The Execution Monitor calls a user-supplied function and reports
all caught runtime exceptions. It is used internally by other Boost Test Library components. It also could be used in
some production environment to make controlled calls of functions which might otherwise crash the program.
- The Program Execution Monitor - a simple helper facility to be used to monitor
a program execution. The Program Execution Monitor provides the function main() and uses the Execution Monitor to control
a program execution. It should be used in production environment to produce uniform error reports. To control programs
working in test environment, use the Unit Test Framework instead.
- The Test Tools - a toolbox for various testing needs. Test Tools are used by test
programs working under control of the Unit Test Framework.
- The Unit Test Framework - a framework that simplifies writing and organizing
test cases. The framework supports test cases written as simple free functions or member functions and organizes them
into a tree of test suites. The framework allows to use the Test Tools to implement a test cases and provides a facility
to manage a log report level and a result report level.
- The Minimal Testing Facility -
simple facility designed to provide the functionality presented by the
original version of Boost.Test. It causes the test program to run in a
monitored environment. In addition it defines several simple test tools
that behave similarly to ones defined in the Unit Test Framework test
tools. Minimal testing facility does not require linking with external
components, so could be a component of choice for simple and quick testing
needs.