On 1/3/06 5:32 PM, "Gennadiy Rozental"
You need an output operator << for the boost::posix_time::ptime to be able to print values in test log.
Or you can put this line:
BOOST_TEST_DONT_PRINT_LOG_VALUE( boost::posix_time::ptime );
at the file level before the first test that uses ptime. It will indicate
that ptime is unprintable. But any test macro that has the value and try to
print it will print out empty space instead. However, looking at the
Date-Time docs, ptime should have I/O operators. Make sure to #include