public void UnitTestGetWindowsAzureDeploymentDeleteConfigurations()
 {
     ConfigSectionConfigurationSource configSectionConfigurationSource = new ConfigSectionConfigurationSource();
     DeploymentDeleteConfiguration[] deploymentDeleteConfigurations = configSectionConfigurationSource.GetWindowsAzureDeploymentDeleteConfigurations();
     Assert.AreEqual(1, deploymentDeleteConfigurations.Length);
     Assert.AreEqual(2, deploymentDeleteConfigurations[0].DeploymentSlots.Count);
     Assert.AreEqual(3, deploymentDeleteConfigurations[0].Schedules.Count);
     Assert.AreEqual(5, deploymentDeleteConfigurations[0].Schedules[0].Days.Count);
     Assert.AreEqual(5, deploymentDeleteConfigurations[0].Schedules[1].Days.Count);
     Assert.AreEqual(2, deploymentDeleteConfigurations[0].Schedules[2].Days.Count);
 }