public void ParseCreatedModification()
        {
            string entry = EntryWithSingleLineComment();

            Modification expected = new Modification();

            expected.Comment      = "added subfolder";
            expected.UserName     = "******";
            expected.ModifiedTime = new DateTime(2002, 9, 16, 14, 41, 0);
            expected.Type         = "Created";
            expected.FileName     = "[none]";
            expected.FolderName   = "plant";

            Modification[] actual = parser.ParseModifications(makeArray(entry));
            Assert.IsNotNull(actual, "expected a mod");
            Assert.AreEqual(0, actual.Length, "created should not have produced a modification");
        }