Esempio n. 1
0
 public void check_stamp_parsing2(string input_file_name, string expected_remainder, string expected_year, string expected_month, string expected_day)
 {
     Stamper stamper = new Stamper();
     ParseResult res = stamper.parse(input_file_name);
     check_stamp_parsing(res, expected_remainder, expected_year, expected_month, expected_day);
 }
Esempio n. 2
0
        public void check_no_stamp(string input_file_name)
        {
            Stamper stamper = new Stamper();
            ParseResult res = stamper.parse(input_file_name);
            UT.Assert.IsNotNull(res);
            UT.Assert.IsNull(res.Stamp);

        }