use of io.confluent.ksql.execution.streams.materialization.StreamsMaterializedTable in project ksql by confluentinc.
the class KsMaterializationTest method shouldReturnNonWindowed.
@Test
public void shouldReturnNonWindowed() {
// Given:
givenWindowType(Optional.empty());
// When:
final StreamsMaterializedTable table = materialization.nonWindowed();
// Then:
assertThat(table, is(instanceOf(KsMaterializedTable.class)));
}
Aggregations