public void GetsNotificationForRegisteredSection()
 {
     coordinator.AddSectionChangeHandler("section1", ConfigurationChanged);
     coordinator.NotifyUpdatedSections(new String[] { "section1" });
     Assert.AreEqual(1, notifiedChanges.Count);
     Assert.AreEqual("section1", notifiedChanges[0].SectionName);
 }