public void sendLastCommentFromIdLocationTest()
 {
     List<Comments> comments = new List<Comments>();
     Comments comment = new Comments();
     comment.description = "Teste";
     comments.Add(comment);
     iCommentServices.Setup(m => m.findCommentByIdLocation(It.IsAny<int>())).Returns(comments);
     SpeechWebServicesController target = new SpeechWebServicesController(iCommentServices.Object);
     string idLocation = "1";
     string code = "teste";
     var actual = target.sendLastCommentFromIdLocation(idLocation, code);
     Assert.IsNotNull(actual);
 }