2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-01 09:02:08 +00:00
Files
test/doc/v2/examples/example15.cpp
2014-02-02 02:06:26 +01:00

16 lines
341 B
C++
Executable File

//[example15
#include <boost/test/included/unit_test.hpp>
using namespace boost::unit_test;
BOOST_AUTO_TEST_CASE( free_test_function )
{
BOOST_CHECK( true /* test assertion */ );
}
test_suite* init_unit_test_suite( int argc, char* argv[] )
{
framework::master_test_suite().p_name.value = "my master test suite name";
return 0;
}
//]