示例#1
0
        public async Task PartiallyUpdateCondition_ReturnsBadRequestResponse_GivenNoPatchDocument()
        {
            //Act
            var response = await _controller.PartiallyUpdateCondition(Guid.Empty, null);

            //Assert
            Assert.IsType <BadRequestResult>(response);
        }