blob: e7c6cc0e1dfffe4a68322e95f628b73fb5300464 [file] [log] [blame]
#include <boost/test/included/unit_test.hpp>
using namespace boost::unit_test;
//____________________________________________________________________________//
void free_test_function()
{
BOOST_CHECK( true /* test assertion */ );
}
//____________________________________________________________________________//
test_suite*
init_unit_test_suite( int argc, char* argv[] )
{
for( int i=0; i < 10000; i++ )
framework::master_test_suite().
add( BOOST_TEST_CASE( &free_test_function ) );
return 0;
}
//____________________________________________________________________________//