Ejemplo n.º 1
0
        public void DeleteComment_BadId_ReturnsNotFound()
        {
            ActionResult result = blogController.DeleteComment(0, Guid.NewGuid());

            Assert.IsInstanceOf <NotFoundResult>(result);
        }