use of org.kie.kogito.addons.k8s.EndpointDiscovery in project kogito-runtimes by kiegroup.
the class EndpointDiscoveryTest method verifyKubernetesIntegration.
@Test
void verifyKubernetesIntegration() {
final EndpointDiscovery mockedEndpointDiscovery = new EndpointDiscoveryConfig().endpointDiscovery(kubernetesClient);
final Optional<Endpoint> endpoint = mockedEndpointDiscovery.findEndpoint("test", "test");
// we haven't created anything
assertTrue(endpoint.isEmpty());
}
Aggregations