private ResponseEntity<Order> createOrder() {
HttpEntity<String> requestEntity = new HttpEntity<String>(
RestDataFixture.standardOrderJSON(),getHeaders("letsnosh" + ":" + "noshing"));
RestTemplate template = new RestTemplate();
return template.postForEntity(
"http://localhost:8080/aggregators/orders",
requestEntity, Order.class);
}
static HttpHeaders getHeaders(String auth) {