use of org.apache.camel.impl.health.ConsumersHealthCheckRepository in project camel-quarkus by apache.
the class MicroProfileHealthCamelChecksDisabledTest method consumersHealthCheckNull.
@Test
public void consumersHealthCheckNull() {
ConsumersHealthCheckRepository consumersRepository = context.getRegistry().lookupByNameAndType("consumers", ConsumersHealthCheckRepository.class);
assertNull(consumersRepository);
}
use of org.apache.camel.impl.health.ConsumersHealthCheckRepository in project camel-quarkus by apache.
the class MicroProfileHealthEnabledTest method consumersHealthCheckNotNull.
@Test
public void consumersHealthCheckNotNull() {
ConsumersHealthCheckRepository consumersRepository = context.getRegistry().lookupByNameAndType("consumers", ConsumersHealthCheckRepository.class);
assertNotNull(consumersRepository);
}
Aggregations