OrderLineDto orderLine = new OrderLineDto();
orderLine.setProduct(fullProduct);
orderLine.setLineNumber(1);
orderLine.setDescription("an orderline");
OrderWithOrderLinesDto order = new OrderWithOrderLinesDto();
order.addToOrderLines(orderLine);
order.setOrderNumber("aap");
orderService.createOrder(order);
// Assert.assertTrue("Number of customers should be one",
// stored.getBuyers().size() == 1);