Exemplo n.º 1
0
 public void TestResponsiblePartyHasAResidentialAddress()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     testAddress = TestRelative.HomeAddress;
     Assert.NotNull(testAddress);
 }
Exemplo n.º 2
0
 public void TestResponsiblePartyHasProperAddressWithStreetAndCity()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     testAddress = TestRelative.HomeAddress;
     Assert.NotNull(testAddress.City);
     Assert.NotNull(testAddress.Street);
 }
Exemplo n.º 3
0
 public void TestResidentialAddressHasStreetAndCity()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     Assert.NotNull(testAddress.Street);
     Assert.NotNull(testAddress.City);
 }