使用 Pex 测试私有方法

发布于 2024-12-22 14:58:40 字数 109 浏览 1 评论 0原文

我想在我的项目中使用 Pex 和 Moles。我想使用 Pex 测试私有方法。

有人用 Pex 来测试私有方法吗?

如果我们无法直接测试,是否有任何解决方法来测试私有方法?

I want to use Pex and Moles in my project.I want to test Private method using Pex.

Is anyone used Pex to test private method?

If we can't test directly, Is there any workaround to test Private method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东京女 2024-12-29 14:58:40

Pex 的作者之一 Peli 已经回答了这个问题:PEX 不适用于私有和受保护的方法解决办法 pex 内部类

一些替代方案:

  1. 不要测试私有方法。
  2. 重新设计您正在测试的逻辑以提高可测试性。
  3. 使用 InternalsVisibleToAttribute。将 [ assembly:InternalsVisibleTo("Company.Product.ProjectUnderTest.Tests")] 放入 Company.Product.ProjectUnderTest\Properties\AssemblyInfo.cs 中。

This has been answered by Peli, one of Pex's authors: PEX will not work for private and protected methods and workaround pex internal class.

A few of the alternatives:

  1. Don't test private methods.
  2. Re-design the logic you are testing to increase testability.
  3. Use InternalsVisibleToAttribute. Put [assembly: InternalsVisibleTo("Company.Product.ProjectUnderTest.Tests")] into Company.Product.ProjectUnderTest\Properties\AssemblyInfo.cs.

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