如何列出所有未测试的类的方法?
我想要一个未测试的方法/类的列表,但不知道如何获取它。请帮忙。
[编辑] 我正在使用测试框架 Moq。
I want to have a list of not-tested methods/classes but not sure how to get it. Please help.
[Edit]
I'm using test framework Moq.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找代码覆盖率计划。
您使用哪个单元测试框架?如果您在 VS2010 Ultimate 或 Premium 中使用 Microsoft 内置的单元测试框架,您将内置代码覆盖率。您可以通过以下方式启用它:这些步骤。
如果您没有 Ultimate/Premium,或者您正在使用其他框架(即:NUnit),您可以考虑 dotCover。
作为免费替代方案,如果您使用的是 NUnit,则可以下载 NCover 的社区版 (以前免费的覆盖框架)。
You're after a code coverage program.
Which unit testing framework are you using? If you're using Microsoft's built in unit test framework in VS2010 Ultimate or Premium you'll have code coverage built in. You can enable it by following these steps.
If you don't have Ultimate/Premium, or you're using another framework (ie: NUnit), you could consider dotCover from JetBrains.
For a free alternative, if you're using NUnit, you can download the community edition of NCover (a previously free coverage framework).
使用类似 NCover 的内容
请参阅 http://ncover.sourceforge.net/
和 http://www.ncover.com/
这会显示您的单元测试覆盖率的完整报告以及哪些课程被测试或未被测试。
Use something like NCover
See http://ncover.sourceforge.net/
and http://www.ncover.com/
This shows your a complete report of your unit test coverage and what classes are tested or not.