blob: 4f9907bf03e69edf174ad8a3d10a872288f67de6 [file] [log] [blame]
#define BOOST_TEST_MODULE example
#include <boost/test/included/unit_test.hpp>
//____________________________________________________________________________//
BOOST_AUTO_TEST_CASE( test )
{
BOOST_CHECK_BITWISE_EQUAL( (char)0x26, 0x04 );
}
//____________________________________________________________________________//