Does the enhancement test have wide line support?

I just use BOOST_TEST_MESSAGE (L "blah") and the only thing that prints out is a hexadecimal value like 0x12345678. Is any configuration missing? I am using boost 1.44.

+3
source share
1 answer

If you look at boost / test / unit_test_log.h , you will see that the unit_test_log_t class uses std :: ostream to stream logs, so you probably have to implement your own logger.

+2
source

Source: https://habr.com/ru/post/1790943/


All Articles