public void TestResponsiblePartyHasAResidentialAddress() { ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity"); testAddress = TestRelative.HomeAddress; Assert.NotNull(testAddress); }
public void TestResponsiblePartyHasProperAddressWithStreetAndCity() { ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity"); testAddress = TestRelative.HomeAddress; Assert.NotNull(testAddress.City); Assert.NotNull(testAddress.Street); }
public void TestResidentialAddressHasStreetAndCity() { ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity"); Assert.NotNull(testAddress.Street); Assert.NotNull(testAddress.City); }