You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2019. It is now read-only.
The integration tests rely on identifying an Azure subscription and then identifying the Azure resources that they are targeting on that subscription.
For the subscription itself, the test suit contains a wrapper that is able to parse Azure publish settings files and picks up a subscription by name. This is currently hardcoded on the AzureSubscription class:
Ideally you want to place your publish settings file on the same folder as the csproj for the integration tests, but it can be anywhere as long as you update the constant value.
Resources used by tests are declared as private constants on the test class:
private const string VmName = "wjn-sql2008"
In this case the test needs a live VM that it can upscale and downscale.