SAB-E02/TDD.DbTestHelpers/Core/DbFixture.cs
2021-04-06 18:04:43 +02:00

26 lines
701 B
C#

using System.Data.Entity;
namespace TDD.DbTestHelpers.Core
{
public abstract class DbFixture<TContext> : IDbFixture where TContext : DbContext, new()
{
protected readonly TContext Context;
public DbContext GetContext
{
get { return Context; }
}
protected DbFixture()
{
RefillBeforeEachTest = false;
UseTransactionScope = false;
Context = new TContext();
}
public bool UseTransactionScope { get; protected set; }
public bool RefillBeforeEachTest { get; protected set; }
public abstract void PrepareDatabase();
public abstract void FillFixtures();
}
}