public void XmlDocRemoveEntryRemovesEntry()
        {
            XmlSettingsProvider doc = CreateDoc();

            //Make sure entry exists
            Assert.IsNotNull(doc.GetValue("capture", "postrecord"));

            doc.RemoveEntry("capture", "postrecord");

            Assert.IsNull(doc.GetValue("capture", "postrecord"));
        }