解决 pex 内部类
当被测试的类是内部类时,有什么方法可以让 pex 工作吗?密封课程怎么样?
我的意思是,毕竟这种类型的工具非常适合 API 测试,有时您可能希望至少将内容保留在内部。
谢谢
Is there any way to make pex work when the classes under test are internal? how about sealed classes?
I mean after all this type of tool is really good for API testing, you are likely to want to keep stuff at least internal sometimes.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
InternalsVisibleToAttribute 为测试程序集提供内部可见性
。然后,Pex 将能够“查看”内部类型并测试它们。Give the test assembly internal visibility through the
InternalsVisibleToAttribute
. Pex will then be able to 'see' internal types and test them.