Exemplo n.º 1
0
 public void TestDeleteCommentWorksWithExistingComment()
 {
     int commentId = 1;
     DeleteComment delComment = new DeleteComment();
     Assert.IsTrue(delComment.GetCommand(commentId));
 }
Exemplo n.º 2
0
 public bool DeleteComment(int commentId)
 {
     DeleteComment delComment = new DeleteComment();
     return delComment.GetCommand(commentId);
 }