Entity Framework 4.1 - Code First - 单元测试数据访问层
我是一名 .NET 开发人员,正在为我的数据访问层编写测试。我有使用假存储库的测试 - 我已经通过使用 Moq 和 Ninject 实现了这一点。
我正在了解 EntityFramework 4.1 Code First 模型,我想为 CRUD 例程创建一个原型。它是一个 MVC 应用程序,因此我的实体不会被上下文跟踪。
对我来说,我正在编写将对数据库进行更改的测试,这感觉是错误的。然后,每次我想运行这些测试时,我都必须清除数据库。这是测试 CRUD 例程的唯一方法吗?
谢谢
I'm a .NET developer and I'm writing tests for my data access layer. I have tests that use fake repository - I have achieved that by using Moq and Ninject.
I'm getting my head around EntityFramework 4.1 Code First model and I'd like to create a prototype for CRUD routines. It's an MVC app, so my entities won't be tracked by a context.
To me it feels wrong that I'm writing tests that will make changes to the database. I will then have to clear the database each time I want to run these tests. Is this the only way to test CRUD routines?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不访问数据,您如何期望测试数据访问?是的,数据访问应该针对真实数据库进行测试。对于您的问题,有一个非常简单的解决方法。在测试结束时使您的测试具有事务性并回滚更改。您可以像这样使用基类(NUnit):
How do you expect to test data access if you don't access the data? Yes data access should be tested against real database. There is very simple workaround for your problem. Make your test transactional and rollback changes at the end of the test. You can use base class like this (NUnit):