private TestAzureResourcesViewModel InvalidModel()
 {
     return(new TestAzureResourcesViewModel
     {
         ResourceName = string.Empty,
         AzureRegion = string.Empty,
         DeploymentJson = ValidatorHelper.InvalidJsonString(),
         ParametersJson = ValidatorHelper.InvalidJsonString()
     });
 }
 private TestAzureResourcesViewModel ValidModel()
 {
     return(new TestAzureResourcesViewModel
     {
         ResourceName = "TestResourceName",
         AzureRegion = "east-us",
         DeploymentJson = ValidatorHelper.ValidJsonString(),
         ParametersJson = ValidatorHelper.ValidJsonString()
     });
 }