I have file test.cpp. It looks like this:
#define BOOST_TEST_MAIN
#include <boost/test/included/unit_test.hpp>
BOOST_AUTO_TEST_SUITE( test_suite1 )
BOOST_AUTO_TEST_CASE( my_test )
{
// testing...
}
BOOST_AUTO_TEST_SUITE_END()
It's OK. It works....
But I want to have more BOOST_AUTO_TEST_SUITE and I'd like to have every suite in other file.
I'd like to run all test cases from every test suite. What should I do?