如何列出所有未测试的类的方法?

发布于 2024-09-19 01:58:24 字数 67 浏览 4 评论 0原文

我想要一个未测试的方法/类的列表,但不知道如何获取它。请帮忙。

[编辑] 我正在使用测试框架 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迎风吟唱 2024-09-26 01:58:24

您正在寻找代码覆盖率计划。

您使用哪个单元测试框架?如果您在 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).

神仙妹妹 2024-09-26 01:58:24

使用类似 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文