protected ZipCode parsing_the_string_to_zip_code(ZipCodeTestingContext context) { return(ZipCode.Parse(context.the_string_that_I_should_parse)); }
public void the_first_part_of_the_zip_code_should_be_as_expected(ZipCodeTestingContext context, ZipCode zipCode) { Assert.AreEqual(context.expected_first_part, zipCode.Zip); }