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

10 lines
233 B
C++
Executable File

//[example14
#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE my master test suite name
#include <boost/test/included/unit_test.hpp>
BOOST_AUTO_TEST_CASE( free_test_function )
{
BOOST_CHECK( true /* test assertion */ );
}
//]