检查 NotImplementedExceptions 的 FxCop 规则
我希望每晚构建一次检查我的 .NET 代码中有多少个 NotImplementedExeption,因此希望我们可以在发布之前将它们全部删除。 我的第一个想法是 FxCop 可能是一个很好的工具来做到这一点。 有人有这方面的自定义 FxCop 规则吗? 我该如何自己创建一个呢?
I'd like to have the nightly build check for how many NotImplementedExeptions there are in my .NET code so hopefully we can remove them all before releasing. My first thought is that FxCop might be a good tool to do this. Does anyone have a custom FxCop rule for this? How would I go about creating one myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果超过 10 个方法创建 NotImplementedException,这样的单元测试将会失败。 失败时,它将报告创建此异常的所有方法。
代码库的创建方式如下:
Snippet 使用 Lokad 共享库。
Unit test like this will fail if more than 10 methods create NotImplementedException. On failing it will report all methods that create this exception.
Where codebase is created like this:
Snippet uses Lokad.Quality.dll from the Lokad Shared Libraries.