.setContext(getAuraTestingUtil().getContext(Mode.DEV, Format.JSON, app, ApplicationDef.class, false))
.getPostMethod();
HttpResponse httpResponse = perform(post);
int statusCode = getStatusCode(httpResponse);
String response = getResponseBody(httpResponse);
post.releaseConnection();
assertTrue("Failed to reach aura servlet", statusCode == HttpStatus.SC_OK);
assertFalse("Got error response "+response, response.endsWith("/*ERROR*/"));
return response;
}