return;
}
getMockEndpoint("mock:input").expectedBodiesReceived("Hello World");
context.addRoutes(new RouteBuilder() {
public void configure() {
from("netty4-http:https://localhost:{{port}}?ssl=true&passphrase=changeit&keyStoreResource=jsse/localhost.ks&trustStoreResource=jsse/localhost.ks")
.to("mock:input")
.process(new Processor() {
public void process(Exchange exchange) throws Exception {