Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Test Suites

BOOST_AUTO_TEST_SUITE
BOOST_AUTO_TEST_SUITE_END
BOOST_FIXTURE_TEST_SUITE
BOOST_TEST_MODULE
BOOST_TEST_SUITE

A test suite is an ordered collection of test cases and other test suites. The test cases in a suite are executed in the order in which they are added to the suite. When test cases are automatically registered, they are added to the test suite in the order of their definition in the source file.


PrevUpHomeNext