I have a Springboot application, where I have some camel routes configured.
public class CamelConfig { private static final Logger LOG = LoggerFactory.getLog
Did you try using Camel test runner?
@RunWith(CamelSpringJUnit4ClassRunner.class)
If you are using camel-spring-boot dependency, you may know that it uses auto configuration to setup Camel:
camel-spring-boot
CamelAutoConfiguration.java
It means that you may also need to add @EnableAutoConfiguration to your test.
@EnableAutoConfiguration