ForumReply forumReply = createForumReply(forumTopic, title, title);
addSnippetParam("ForumService.replyUuid", forumReply.getReplyUuid());
addSnippetParam("ForumService.replyTitle", updatedTitle);
addSnippetParam("ForumService.replyContent", updatedContent);
JavaScriptPreviewPage previewPage = executeSnippet(SNIPPET_ID);
JsonJavaObject json = previewPage.getJson();
Assert.assertNull("Unexpected error detected on page", json.getString("code"));
forumReply = getForumReply(forumReply.getReplyUuid());
Assert.assertEquals(forumReply.getReplyUuid(), json.getString("getReplyUuid"));
Assert.assertEquals(updatedTitle, forumReply.getTitle());