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); }
protected ZipCode parsing_the_string_to_zip_code(ZipCodeTestingContext context) { return(ZipCode.Parse(context.the_string_that_I_should_parse)); }
protected void is_a_valid_short_zip_code_string(ZipCodeTestingContext context) { context.has_this_string("12345"); context.should_expect_for_first_part(12345); }
protected ZipCode parsing_the_string_to_zip_code(ZipCodeTestingContext context) { return ZipCode.Parse(context.the_string_that_I_should_parse); }