public void ConfigDocumentSetSetting() { ConfigDocument document = new ConfigDocument(file); document.SetValue("key", "newValue"); Assert.AreEqual("newValue", document.GetValue("key")); document.SetValue("section1", "key1", "newValue"); Assert.AreEqual("newValue", document.GetValue("section1", "key1")); }