public void CouponConstructorTest1() { Guid couponId = new Guid(); // TODO: Initialize to an appropriate value Coupon target = new Coupon(couponId); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void CouponCodeTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.CouponCode = expected; actual = target.CouponCode; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void StartDateTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value DateTime expected = new DateTime(); // TODO: Initialize to an appropriate value DateTime actual; target.StartDate = expected; actual = target.StartDate; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void CouponConstructorTest() { Coupon target = new Coupon(); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void RequiresMinimumOrderAmountTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value double expected = 0F; // TODO: Initialize to an appropriate value double actual; target.RequiresMinimumOrderAmount = expected; actual = target.RequiresMinimumOrderAmount; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void NumUsesTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value int expected = 0; // TODO: Initialize to an appropriate value int actual; target.NumUses = expected; actual = target.NumUses; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void ExpiresOnFirstUseByAnyCustomerTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; target.ExpiresOnFirstUseByAnyCustomer = expected; actual = target.ExpiresOnFirstUseByAnyCustomer; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void DiscountIncludesFreeShippingTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; target.DiscountIncludesFreeShipping = expected; actual = target.DiscountIncludesFreeShipping; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void CouponIdTest() { Coupon target = new Coupon(); // TODO: Initialize to an appropriate value Guid expected = new Guid(); // TODO: Initialize to an appropriate value Guid actual; target.CouponId = expected; actual = target.CouponId; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }