Windows 服务中的断言
我想在后端 Windows 服务代码中使用 _ASSERTE 进行断言。但据我了解,默认行为将由于消息框而挂起服务。
在 Windows 服务中安全地执行断言的最佳方法是什么?
编辑: 我应该提到,如果在控制台模式下运行,代码仍应使用正常行为;例如在进行单元测试时。
I'd like to assert using _ASSERTE in a backend Windows service code. But as I understand, the default behaviour will hang the service because of the message box.
What is the best way to safely do assertions in a Windows service?
Edit:
I should've mentioned that code should still use the normal behaviour, if running in the console mode; for example when being unit tested.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需编写您自己的断言函数即可。
Simply write your own assert function.