Is there any way to make Boost.Test take the name of the file as automatic test suite name, in a portable manner?
Something like BOOST_AUTO_TEST_SUITE(__FILE__)
(this doesn't work because __FILE__
contains full path and is not a string object).
Thanks!