//
// If the DateStringConverter is not added here first then the tests fail...
// There needs to be some way to override converters in a sane way.
//
Multibinder<Converter> converters = Multibinder.newSetBinder(binder, Converter.class);
converters.addBinding().toInstance(new DateStringConverter(format));
ConverterUtils.createConverterMultibinder(converters);
}
});
converter = injector.getInstance(StandardTypeConverter.class);