use of org.apache.camel.impl.DefaultUnitOfWork in project camel by apache.
the class CachedOutputStreamTest method setUp.
protected void setUp() throws Exception {
super.setUp();
deleteDirectory("target/cachedir");
createDirectory("target/cachedir");
exchange = new DefaultExchange(context);
UnitOfWork uow = new DefaultUnitOfWork(exchange);
exchange.setUnitOfWork(uow);
}
Aggregations