通过 pex 和 moles 进行单元测试和数据库隔离
我有一个 VS winforms 项目,其中有很多数据库调用。
每当我创建单元测试时,都会有更多的方法,需要更多的时间来消耗更多的单元测试项目。
我如何隔离数据库调用或者如果我使用微软的moles和pex我能够隔离数据库调用吗?任何关于痣和 pex 的样本都会非常有帮助。
I have a VS winforms project which has lot of database calls.
Whenever i create unit testing, there is more number of methods, taking more time to consume and more number of unit test projects.
How do i isolate DB calls or will i be able to isolate DB calls if i use microsoft's moles and pex? Any samples on moles and pex will be highly helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以隔离任何内容 - 数据库调用、Web 服务调用、SharePoint。不要紧。您的项目引用了许多外部依赖项,例如 System.Data。您可以获取预构建的 Moles 组件,也可以构建自己的组件。框架在某些方面相当粗糙,但它确实有效。
You can isolate anything - database calls, web services calls, SharePoint. It does not matter. Your project has references to a number of external dependencies like System.Data. You can either grab the pre-built moles assemblies or build you own. Framework is pretty rough at some points, but it works.