public void testTypeConverter() throws Exception {
// add as type converter
Method method = TypeConverterConcurrencyIssueTest.class.getMethod("toMyCamelBean", String.class);
assertNotNull(method);
context.getTypeConverterRegistry().addTypeConverter(MyCamelBean.class, String.class, new StaticMethodTypeConverter(method));
ExecutorService pool = context.getExecutorServiceManager().newThreadPool(this, "test", 50, 50);
final CountDownLatch latch = new CountDownLatch(size);
StopWatch watch = new StopWatch();