public void when_rejecting_payment_then_notifies_event()
        {
            sut.Cancel();

            var @event = (PaymentRejected)sut.Events.Last();

            Assert.Equal(PaymentId, @event.SourceId);
            Assert.Equal(SourceId, @event.PaymentSourceId);
        }