Exemplo n.º 1
0
        public void GetAllComment()
        {
            new CommentRepository().Add(commentOne);
            new CommentRepository().Add(commentTwo);
            var retorno = commentController.GetAllComment();

            Assert.IsType <OkObjectResult>(retorno);
        }