示例#1
0
        public async Task DeleteCondition_ReturnsNotFoundResponse_GivenInvalidConditionId()
        {
            //Act
            var response = await _controller.DeleteCondition(Guid.Empty);

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