使用 Pex 测试私有方法
我想在我的项目中使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Pex 的作者之一 Peli 已经回答了这个问题:PEX 不适用于私有和受保护的方法 和解决办法 pex 内部类。
一些替代方案:
InternalsVisibleToAttribute
。将[ assembly:InternalsVisibleTo("Company.Product.ProjectUnderTest.Tests")]
放入Company.Product.ProjectUnderTest\Properties\AssemblyInfo.cs
中。测试 .net
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:
InternalsVisibleToAttribute
. Put[assembly: InternalsVisibleTo("Company.Product.ProjectUnderTest.Tests")]
intoCompany.Product.ProjectUnderTest\Properties\AssemblyInfo.cs
.testing .net