diff --git a/src/Documently.Specs/AggregateRootTestFixture.cs b/src/Documently.Specs/AggregateRootTestFixture.cs deleted file mode 100644 index 1c65bbe..0000000 --- a/src/Documently.Specs/AggregateRootTestFixture.cs +++ /dev/null @@ -1,41 +0,0 @@ -//// ReSharper disable InconsistentNaming -//using System; -//using System.Collections; -//using System.Collections.Generic; -//using CommonDomain; -//using CQRSSample.Domain.Events; -//using NUnit.Framework; - -//namespace CQRSSample.Specs -//{ -// [TestFixture] -// public abstract class AggregateRootTestFixture where T : IAggregate, new() -// { -// protected Exception Caught; -// protected T Sut; -// protected ICollection Events; - -// protected abstract IEnumerable Given(); -// protected abstract void When(); - -// [SetUp] -// public void Setup() -// { -// Sut = new T(); -// foreach (var @event in this.Given()) -// { -// Sut.ApplyEvent(@event); -// } - -// try -// { -// When(); -// Events = Sut.GetUncommittedEvents(); -// } -// catch (Exception ex) -// { -// Caught = ex; -// } -// } -// } -//} \ No newline at end of file