public void SetUp()
        {
            var resolver = ObjectResolver.Basic();

            theSource = new FolderAppSettingsXmlSource("Configuration");
            theProvider = new SettingsProvider(resolver, new ISettingsSource[]{theSource});
        }
 public void SetUp()
 {
     // See the *.config files in this directory in solution
     // explorer
     var source = new FolderAppSettingsXmlSource("Configuration");
     theData = source.FindSettingData();
 }
 private void readSettingsFromProfileDotConfigFile()
 {
     var settingsData = new FolderAppSettingsXmlSource(_deployedFolderProfilePath).FindSettingData();
     _settingsProvider = SettingsProvider.For(settingsData.ToArray());
 }