
12 Mar
2008
12 Mar
'08
6:55 p.m.
On Tue, 2008-03-11 at 21:20 +0000, Gennadiy Rozental wrote:
It's covered in docs. You can use BOOST_AUTO_TEST_SUITE. There is an example of coplex hierarhy there as well. In general it's as simple as:
BOOST_AUTO_TEST_SUITE(s1)
BOOST_AUTO_TEST_CASE(test1) { }
BOOST_AUTO_TEST_SUITE(internal_suite)
BOOST_AUTO_TEST_CASE(test1) { }
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE(s2)
BOOST_AUTO_TEST_CASE(test1) { }
BOOST_AUTO_TEST_SUITE_END()
Gennadiy
I appreciate the example. Thanks. Stephen