assertMockEndpointsSatisfied();
}
public void testProxyBuilderVoidAsInOut() throws Exception {
// will by default let all exchanges be InOut
OrderService service = new ProxyBuilder(context).endpoint("seda:delay").build(OrderService.class);
getMockEndpoint("mock:delay").expectedBodiesReceived("Hello World", "Bye World");
service.doNothing("Hello World");
template.sendBody("mock:delay", "Bye World");