Skip to content

Commit

Permalink
test: TypeInference tests multiple scenarios
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Oct 20, 2023
1 parent c925ea2 commit ce6f6e9
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,30 @@
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.Service;
import io.fabric8.kubernetes.api.model.apps.Deployment;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

import java.util.Arrays;
import java.util.Optional;

class TypeInferenceTest {

// Commented-out due to compilation failure
// TODO: Enable after #5522 is fixed
// @Test
// void typeInferenceWithLambda() {
// final ConfigMapDependentResource cdr = new ConfigMapDependentResource();
// final DeploymentDependentResource ddr = new DeploymentDependentResource();
// Arrays.asList(cdr, ddr).forEach(dr -> dr.reconcile());
// Assertions.assertTrue(true);
// }

@Test
void test() {
void typeInferenceWithMethodReference() {
final ConfigMapDependentResource cdr = new ConfigMapDependentResource();
final DeploymentDependentResource ddr = new DeploymentDependentResource();
Arrays.asList(cdr, ddr).forEach(dr -> dr.reconcile());
Arrays.asList(cdr, ddr).forEach(KubernetesDependentResource::reconcile);
Assertions.assertTrue(true);
}

static abstract class KubernetesDependentResource<R extends HasMetadata, P extends HasMetadata>
Expand Down

0 comments on commit ce6f6e9

Please sign in to comment.