public void Delete_ShouldDeleteDoc() { // Arrange int id = _rnd.Next(1, _docs.Count()); // Act _service.Delete(id); // Assert _repository.Verify(mock => mock.Delete(It.IsAny <Doc>()), Times.Once); }
public ActionResult Delete(int id) { try { _service.Delete(id); return(NoContent()); } catch (ArgumentNullException) { return(NotFound()); } }
public IActionResult Delete(string id) { try { docService.Delete(id); return(Ok()); } catch (Exception ex) { logger.LogError(ex.Message); return(StatusCode(StatusCodes.Status500InternalServerError, ex.Message)); } }