public async Task PartiallyUpdateCondition_ReturnsBadRequestResponse_GivenNoPatchDocument() { //Act var response = await _controller.PartiallyUpdateCondition(Guid.Empty, null); //Assert Assert.IsType <BadRequestResult>(response); }