AzureWebFarm.Tests.Services.Base.ServiceTestBase.GetConfigValue C# (CSharp) Method

GetConfigValue() protected static method

protected static GetConfigValue ( string setting ) : string
setting string
return string
        protected static string GetConfigValue(string setting)
        {
            switch (setting)
            {
                case Constants.WebDeployPackagesBlobContainerKey:
                    return "sites";
                case Constants.WebDeployLeaseBlobContainerName:
                    return "webdeploylease";
                case Constants.StorageConnectionStringKey:
                    return CloudStorageAccount.DevelopmentStorageAccount.ToString();
            }
            return string.Empty;
        }