// 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"));
// Recreate first comment
comment1 = ucm.createComment(ident1, "Hello World");
comment2 = ucm2.createComment(ident1, "Hello World with subpath");
// Recreate a reply to the first comments
ucm.replyTo(comment1, ident2, "Reply 1");
ucm.replyTo(comment2, ident2, "Reply 1 with subpath");
assertEquals(Long.valueOf(3), service.getUserCommentsManager().countComments());
assertEquals(Long.valueOf(3), serviceWithSubPath.getUserCommentsManager().countComments());