public StopAzureResourceGroupDeploymentCommandTests(ITestOutputHelper output)
 {
     resourcesClientMock = new Mock <ResourceManagerSdkClient>();
     XunitTracingInterceptor.AddToContext(new XunitTracingInterceptor(output));
     commandRuntimeMock = new Mock <ICommandRuntime>();
     cmdlet             = new StopAzureResourceGroupDeploymentCmdlet()
     {
         CommandRuntime           = commandRuntimeMock.Object,
         ResourceManagerSdkClient = resourcesClientMock.Object
     };
 }