public void testUpdateForumReplyError() {
addSnippetParam("ForumService.replyUuid", "Foo");
addSnippetParam("ForumService.replyTitle", "Foo");
addSnippetParam("ForumService.replyContent", "Foo");
JavaScriptPreviewPage previewPage = executeSnippet(SNIPPET_ID);
JsonJavaObject json = previewPage.getJson();
Assert.assertEquals(404, json.getInt("code"));
Assert.assertEquals("CLFRV0008E: Error, unable to find object with uuid: forum for post Foo not found", json.getString("message"));
}