Exemple #1
0
 public void ShouldReturnInvalidPrePaidPaymentException()
 {
     _validPrePaidPayment.PaymentMethod = null;
     Assert.Throws <InvalidPrePaidPaymentException>(() => _validPrePaidPayment.Validate());
 }
Exemple #2
0
 public void ShouldReturnInvalidPaymentException()
 {
     Assert.Throws <InvalidPaymentException>(() => _invalidPrePaidPayment.Validate());
 }