Inheritance: Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet
 public NewAzureRmAutoscaleProfileTests()
 {
     commandRuntimeMock = new Mock<ICommandRuntime>();
     Cmdlet = new NewAzureRmAutoscaleProfileCommand()
     {
         CommandRuntime = commandRuntimeMock.Object
     };
 }
        public NewAzureRmAutoscaleProfileTests(Xunit.Abstractions.ITestOutputHelper output = null)
        {
            if (output != null)
            {
                ServiceManagemenet.Common.Models.XunitTracingInterceptor.AddToContext(new ServiceManagemenet.Common.Models.XunitTracingInterceptor(output));
            }

            commandRuntimeMock = new Mock<ICommandRuntime>();
            Cmdlet = new NewAzureRmAutoscaleProfileCommand()
            {
                CommandRuntime = commandRuntimeMock.Object
            };
        }