Home | Libraries | People | FAQ | More |
The BOOST_AUTO_TEST_SUITE(
name
)
macro defines an automatically registered test suite named name
and opens a namespace named name
.
A test suite can be nested within another test suite. Each test suite begun
with BOOST_AUTO_TEST_SUITE
must be ended with BOOST_AUTO_TEST_SUITE_END
The new test suite is registered within its enclosing test suite, or the
master test suite if there is no enclosing test suite.