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