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

13 lines
286 B
C#

using System.Data.Entity;
namespace TDD.DbTestHelpers
{
public interface IDbFixture
{
void PrepareDatabase();
void FillFixtures();
bool RefillBeforeEachTest { get; }
bool UseTransactionScope { get; }
DbContext GetContext { get; }
}
}