boost测试是否支持宽字符串?
我只是使用 BOOST_TEST_MESSAGE(L"blah") ,唯一打印出来的是十六进制值,例如 0x12345678。我是否缺少某些配置?我用的是boost 1.44。
I'm just using BOOST_TEST_MESSAGE(L"blah") and the only thing that is printed out is an hex value such as 0x12345678. Am I missing some configuration? I'm using boost 1.44.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你看一下 boost/test/unit_test_log.h,您可以看到类 unit_test_log_t 使用 std::ostream 来流式传输日志。
因此,您可能必须实现自己的记录器。
If you take a look at boost/test/unit_test_log.h, you can see that the class unit_test_log_t is using a std::ostream for streaming the logs.
So, you will probably have to implement your own logger.