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