public void TestHorizontallyScale()
 {
     IDeployment deployment = new Deployment();
     string requestId = deployment.HorizontallyScale(
         WindowsAzureAccount.SubscriptionId,
         WindowsAzureAccount.CertificateThumbprint,
         "BeazleyMarketingProfiles-WEuro-Sys",
         DeploymentSlot.Production,
         new[] { new HorizontalScale { InstanceCount = 2, RoleName = "Beazley.Marketing.Profiles.Endpoint" } },
         true,
         "Auto");
     Assert.IsNotNull(requestId);
 }