コード例 #1
0
 public void TestResponsiblePartyHasAResidentialAddress()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     testAddress = TestRelative.HomeAddress;
     Assert.NotNull(testAddress);
 }
コード例 #2
0
 public void TestResponsiblePartyHasProperAddressWithStreetAndCity()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     testAddress = TestRelative.HomeAddress;
     Assert.NotNull(testAddress.City);
     Assert.NotNull(testAddress.Street);
 }
コード例 #3
0
 public void TestResidentialAddressHasStreetAndCity()
 {
     ResidentialAddress testAddress = new ResidentialAddress("testStreet", "testCity");
     Assert.NotNull(testAddress.Street);
     Assert.NotNull(testAddress.City);
 }