Entity Framework 4.1 - Code First - 单元测试数据访问层

发布于 2024-11-28 22:33:08 字数 271 浏览 0 评论 0原文

我是一名 .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 技术交流群。

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

发布评论

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

评论(1

寒冷纷飞旳雪 2024-12-05 22:33:08

如果您不访问数据,您如何期望测试数据访问?是的,数据访问应该针对真实数据库进行测试。对于您的问题,有一个非常简单的解决方法。在测试结束时使您的测试具有事务性并回滚更改。您可以像这样使用基类(NUnit):

[TestFixture]
public abstract class BaseTransactionalTest
{
    private TransactionalScope _scope = null;

    [SetUp]
    public void Initialize()
    {
        _scope = new TransactionalScope(...);        
    }

    [TearDown]
    public void CleanUp()
    {
        if (_scope != null)
        {
            _scope.Dispose();
            _scope = null;
        }
    }
}

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):

[TestFixture]
public abstract class BaseTransactionalTest
{
    private TransactionalScope _scope = null;

    [SetUp]
    public void Initialize()
    {
        _scope = new TransactionalScope(...);        
    }

    [TearDown]
    public void CleanUp()
    {
        if (_scope != null)
        {
            _scope.Dispose();
            _scope = null;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文