public virtual void SetUp()
 {
     mockSystemReader = new _MockSystemReader_62();
     SystemReader.SetInstance(mockSystemReader);
     ident = RawParseUtils.ParsePersonIdent("A U Thor <*****@*****.**> 1316560165 -0400"
                                            );
 }
        private void AssertPersonIdent(string line, PersonIdent expected)
        {
            PersonIdent actual = RawParseUtils.ParsePersonIdent(line);

            NUnit.Framework.Assert.AreEqual(expected, actual);
        }