public void testReplyCommentAsAnonymous()
{
CommentsTab commentsTab = this.vp.openCommentsDocExtraPane();
commentsTab.postCommentAsGuest(COMMENT_CONTENT, COMMENT_AUTHOR, true);
commentsTab.replyToCommentByID(commentsTab.getCommentID(COMMENT_CONTENT), COMMENT_REPLY);
Assert.assertEquals(COMMENT_REPLY,
commentsTab.getCommentContentByID(commentsTab.getCommentID(COMMENT_REPLY)));
Assert.assertEquals(COMMENT_AUTHOR,
commentsTab.getCommentAuthorByID(commentsTab.getCommentID(COMMENT_REPLY)));
}