示例#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);
 }