Inheritance: Microsoft.Azure.Commands.WebApps.Models.WebAppBaseClientCmdLet
 public NewAzureWebAppCommandTests()
 {
     websitesClientMock = new Mock<WebsitesClient>();
     commandRuntimeMock = new Mock<ICommandRuntime>();
     cmdlet = new NewAzureWebAppCmdlet()
     {
         CommandRuntime = commandRuntimeMock.Object,
         WebsitesClient = websitesClientMock.Object
     };
 }
Example #2
0
 public Parameters(NewAzureWebAppCmdlet cmdlet)
 {
     _cmdlet = cmdlet;
 }
Example #3
0
 public Parameters(NewAzureWebAppCmdlet cmdlet, WebsitesClient websitesClient)
 {
     _cmdlet         = cmdlet;
     _websitesClient = websitesClient;
 }