public void CanCreateAnEmptyEventHistoryByFactoryMethod() { var testee = EventHistory.Create(); testee.IsEmpty.Should().BeTrue(); }
public void CanCreateAnEmptyEventHistoryByConstructor() { var testee = new EventHistory(Enumerable.Empty <IEvent>()); testee.IsEmpty.Should().BeTrue(); }