ucm.replyTo(comment2, ident2, "Reply 1 with subpath");
assertEquals(Long.valueOf(3), service.getUserCommentsManager().countComments());
assertEquals(Long.valueOf(3), serviceWithSubPath.getUserCommentsManager().countComments());
// Delete first created coment with one reply each
ucm.deleteComment(comment1, true);
ucm2.deleteComment(comment2, true);
assertEquals(Long.valueOf(1), service.getUserCommentsManager().countComments());
assertEquals(Long.valueOf(1), serviceWithSubPath.getUserCommentsManager().countComments());
// Create reply to a comment that does not exis anymore -> should not create anything
assertNull(ucm.replyTo(comment1, ident2, "Reply 1"));
assertNull(ucm.replyTo(comment2, ident2, "Reply 1 with subpath"));