예제 #1
0
 public void TestDeleteCommentWorksWithExistingComment()
 {
     int commentId = 1;
     DeleteComment delComment = new DeleteComment();
     Assert.IsTrue(delComment.GetCommand(commentId));
 }
예제 #2
0
 public bool DeleteComment(int commentId)
 {
     DeleteComment delComment = new DeleteComment();
     return delComment.GetCommand(commentId);
 }