use of io.confluent.ksql.execution.plan.PlanInfo in project ksql by confluentinc.
the class PlanInfoExtractorTest method shouldExtractSource.
@Test
public void shouldExtractSource() {
// When:
final PlanInfo planInfo = streamSource.extractPlanInfo(planInfoExtractor);
// Then:
assertThat(planInfo.isRepartitionedInPlan(streamSource), is(false));
}
Aggregations