protected void setUp() throws Exception {
container = new JBIContainer();
container.setEmbedded(true);
container.init();
container.start();
out = new OutBinding() {
protected void process(MessageExchange exchange, NormalizedMessage message) throws MessagingException {
LOGGER.info("Received: {}", message);
done(exchange);
}
};