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

46 lines
1020 B
C#

using System.Transactions;
using NUnit.Framework;
namespace TDD.DbTestHelpers.Core
{
public class DbBaseTest<TFixture> where TFixture : IDbFixture, new()
{
private readonly TFixture _fixture;
private TransactionScope _transaction;
protected DbBaseTest()
{
_fixture = new TFixture();
}
[SetUp]
public void BaseSetUp()
{
if (_fixture.RefillBeforeEachTest)
{
ApplyFixtures();
}
if (_fixture.UseTransactionScope)
{
_transaction = new TransactionScope(TransactionScopeOption.RequiresNew);
}
}
[TearDown]
public void BaseTearDown()
{
if (_fixture.UseTransactionScope)
{
_transaction.Dispose();
}
}
private void ApplyFixtures()
{
_fixture.PrepareDatabase();
_fixture.FillFixtures();
}
}
}