Is there a way to repeatedly run a unit-test or a set of unit-tests in Boost test?
Let say I have the following:
BOOST_FIXTURE_TEST_SUITE(someSuite, someFixture)
BOOST_AUTO_TEST_CASE(someTest)
{
...
}
BOOST_AUTO_TEST_SUITE_END()
... and I'd like to run someTest
with setup/teardown for let say 100 times.