public void ShouldPropagateIfDomainEventApplierMethodThrowsAnException() { var aggregateRoot = new TestAggregateRoot(Guid.NewGuid()); aggregateRoot.Invoking(a => a.ThrowAnException()).Should().Throw <Exception>(); }