use of org.apache.camel.microprofile.health.CamelMicroProfileHealthCheckRegistry in project camel-quarkus by apache.
the class MicroProfileHealthEnabledTest method healthCheckRegistryNotNull.
@Test
public void healthCheckRegistryNotNull() {
HealthCheckRegistry registry = HealthCheckRegistry.get(context);
assertNotNull(registry);
assertTrue(registry instanceof CamelMicroProfileHealthCheckRegistry);
assertEquals("camel-microprofile-health", registry.getId());
}
Aggregations