protected RouteBuilder createRouteBuilder() throws Exception {
RouteBuilder routeBuilder = new RouteBuilder() {
@Override
public void configure() throws Exception {
BindyDataFormat bindy = new BindyDataFormat();
bindy.setClassType(BindySimpleFixedLengthOrdinalPosTest.Order.class);
bindy.setLocale("en");
bindy.setType(BindyType.Fixed);
from(URI_DIRECT_MARSHALL)
.marshal(bindy)
.to(URI_MOCK_MARSHALL_RESULT);