assertRoute(result, "testRoleCreate.create", Status.CREATED, null, true);
//creates one user in this Role
String sFakeCreateUser = getFakeUserCreationAddress();
requestCreation = new FakeRequest(POST, sFakeCreateUser);
requestCreation = requestCreation.withHeader(TestConfig.KEY_APPCODE, TestConfig.VALUE_APPCODE);
requestCreation = requestCreation.withHeader(TestConfig.KEY_AUTH, TestConfig.AUTH_ADMIN_ENC);
ObjectMapper mapper = new ObjectMapper();
JsonNode actualObj = mapper.readTree("{\"username\":\""+userName+"\","
+ "\"password\":\"test\","
+ "\"role\":\""+ roleName +"\"}");