public void combineDateTimeTest()
        {
            Parser_Accessor target = new Parser_Accessor();
            string input = Utility.TEST_PARSER_TASK_ALL;
            target.combineDateTime(input);
            string expected=Utility.TEST_PARSER_START;
            string actual =target.start+" ";
            Assert.AreEqual(expected, actual);

            expected = Utility.TEST_PARSER_END;
            actual = target.end + " ";
            Assert.AreEqual(expected, actual);
        }