Comments comments = (Comments) unmarshaller.unmarshal(getMethod.getResponseBodyAsStream());
int numberOfComments = comments.getComments().size();
Comment comment = objectFactory.createComment();
comment.setText("Comment");
PostMethod postMethod =
executePostXml(commentsUri, comment, TestUtils.ADMIN_CREDENTIALS.getUserName(),
TestUtils.ADMIN_CREDENTIALS.getPassword());
Assert.assertEquals(getHttpMethodInfo(postMethod), HttpStatus.SC_CREATED, postMethod.getStatusCode());