public void PaymentNullException() { //Arrange IPaymentBusiness paymentBusiness = new PaymentBusiness(null); //Act string output = paymentBusiness.ProcessOrder(); //Assert }
public void PaymentLessthanZeroException() { //Arrange IPaymentBusiness paymentBusiness = new PaymentBusiness(invalid); //Act string output = paymentBusiness.ProcessOrder(); //Assert }
public void MembershipProductPositive() { //Arrange IPaymentBusiness paymentBusiness = new PaymentBusiness(membership); //Act string output = paymentBusiness.ProcessOrder(); //Assert Assert.IsTrue(output.Contains(Constants.membership)); Assert.IsTrue(output.Contains(Constants.emailSent)); Assert.IsFalse(output.Contains(Constants.duplicateSlip)); Assert.IsFalse(output.Contains(Constants.firstAid)); Assert.IsFalse(output.Contains(Constants.upgradeMembership)); Assert.IsFalse(output.Contains(Constants.physicalProduct)); }
static void Main(string[] args) { Payments physical = new Payments { ProductAmount = 200, eProduct = EProduct.PhysicalProduct }; Payments book = new Payments { ProductAmount = 100, eProduct = EProduct.Book }; Payments member = new Payments { ProductAmount = 300, eProduct = EProduct.Membership }; Payments upgrade = new Payments { ProductAmount = 200, eProduct = EProduct.UpgradeMembership }; Payments video = new Payments { ProductAmount = 200, eProduct = EProduct.Video }; IPaymentBusiness paymentBusiness = new PaymentBusiness(video); string output = paymentBusiness.ProcessOrder(); Console.WriteLine(output); }