blob: b6d86b6380b8debd7f5d1b97e027d0e5e49fd961 [file] [log] [blame]
using System.Configuration;
namespace Lucene.Net.TestFramework.Support
{
public static class SystemProperties
{
public static string GetProperty(string key)
{
return ConfigurationManager.AppSettings[key];
}
public static string GetProperty(string key, string defaultValue)
{
var setting = ConfigurationManager.AppSettings[key];
if (string.IsNullOrEmpty(setting))
return defaultValue;
return setting;
}
}
}