use of org.apache.camel.impl.ActiveMQUuidGenerator in project camel by apache.
the class CamelContextFactoryBeanTest method testGetDefaultUuidGenerator.
public void testGetDefaultUuidGenerator() throws Exception {
factory.setApplicationContext(new StaticApplicationContext());
factory.afterPropertiesSet();
UuidGenerator uuidGenerator = factory.getContext().getUuidGenerator();
assertTrue(uuidGenerator instanceof ActiveMQUuidGenerator);
}
Aggregations