public async void DeleteResource_InternalServerErrorStatusCode_ThrowsException()
        {
            // Arrange
            var httpService         = new Mock <IHttpService>();
            var httpResponseMessage = new HttpResponseMessage
            {
                StatusCode = HttpStatusCode.InternalServerError,
                Content    = new StringContent("")
            };

            httpService
            .Setup(m => m.DeleteAsync(It.IsAny <string>()))
            .ReturnsAsync(httpResponseMessage);
            var scenarioClient = new ScenarioClient(
                httpService.Object
                );
            Exception exception = null;

            try
            {
                // Act
                await scenarioClient.DeleteResource(
                    DependantResourceDataMocks.MockDependantResourceModel()
                    );
            }
            catch (FailedToDeleteResourceException e)
            {
                exception = e;
            }

            // Assert
            Assert.NotNull(exception);
        }
        public async void DeleteResource_ValidScenarioId_NoExceptionThrown()
        {
            // Arrange
            var dependantResourceModel = new DependantResourceModel
            {
                ResourceType = ResourceTypeEnum.Scenario,
                ResourceId   = "6aad965db-fceb-4ee2-bd06-c89ab182ca4c"
            };
            var       httpService    = new HttpService(new HttpClient());
            var       scenarioClient = new ScenarioClient(httpService);
            Exception exception      = null;

            try
            {
                // Act
                await scenarioClient.DeleteResource(dependantResourceModel);
            }
            catch (Exception e)
            {
                exception = e;
            }

            // Assert
            Assert.Null(exception);
        }