使 Contract.Assert 抛出异常而不是显示对话框
如果我使用新的 Code Contracts Contract.Assert
方法,是否可以使其抛出异常而不是显示对话框?我想在构建机器上运行单元测试时执行此操作。
If I'm using the new Code Contracts Contract.Assert
method, is it possible to make it throw an exception rather than display a dialog box? I want to do this when running unit tests on the build machine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢 MSDN 上的这篇 帖子论坛我找到了一个可能的解决方案。
这似乎有效。
Thanks to this post on MSDN forums I've found a possible solution.
This appears to work.
根据文档:
这比旧的公认的解决这个问题的方法要简单得多。
According to the documentation:
This is much more simple than the old accepted solution to this problem.