public Customer() { ID = Guid.Empty; ShippingAddress = new AddressInfo(); BillingAddress = new AddressInfo(); DOB = null; }
public void StateTest() { AddressInfo target = new AddressInfo(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.State = expected; actual = target.State; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void AddressInfoConstructorTest() { AddressInfo target = new AddressInfo(); Assert.Inconclusive("TODO: Implement code to verify target"); }