assertEquals(0,listaIds.size());
comment = createNewComment();
comment.setContentId(content.getId());
this._commentManager.addComment(comment);
assertNotNull(comment.getId());
IComment commentRead = this._commentManager.getComment(comment.getId());
assertEquals(comment.getComment(), commentRead.getComment());
assertEquals(comment.getStatus(), commentRead.getStatus());
assertEquals(comment.getUsername(), commentRead.getUsername());
assertEquals(comment.getId(), commentRead.getId());
this._commentManager.updateCommentStatus(comment.getId(), Comment.STATUS_NOT_APPROVED);
commentRead = this._commentManager.getComment(comment.getId());
assertEquals(Comment.STATUS_NOT_APPROVED, commentRead.getStatus());
this._commentManager.deleteComment(comment.getId());
assertNull(this._commentManager.getComment(comment.getId()));
} catch (Throwable t) {