You can just add a new type converter to the type converter registry to override any existing.
See more at http://camel.apache.org/type-converter.html On Tue, Nov 24, 2015 at 7:14 AM, Minh Tran <[email protected]> wrote: > Hi > > I was wondering if it was possible to mock sections of my route in unit tests > that are using a type converter. e.g. > > convertBodyTo(PO.class) > > My converter class looks something like > > public class PurchaseOrderConverter implements TypeConverters { > @Converter > public PO convert(XYZ xyz) { > ….. > } > } > > From my understanding, these type converters aren’t spring beans so I can't > inject mocked beans. And I don’t believe @MockEndpoints will mock these > things either. Any ideas? I’m using Camel 2.16.1. Thanks. -- Claus Ibsen ----------------- http://davsclaus.com @davsclaus Camel in Action 2: https://www.manning.com/ibsen2
