mirror of
https://github.com/boostorg/test.git
synced 2026-01-27 07:22:11 +00:00
16 lines
344 B
C++
Executable File
16 lines
344 B
C++
Executable File
//[example_code
|
|
#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;
|
|
}
|
|
//]
|