use of org.apache.samza.application.TaskApplication in project samza by apache.
the class TestTaskApplicationDescriptorImpl method testAddTables.
@Test
public void testAddTables() {
TaskApplication testApp = appDesc -> {
mockTables.forEach(appDesc::withTable);
};
TaskApplicationDescriptorImpl appDesc = new TaskApplicationDescriptorImpl(testApp, config);
assertEquals(mockTables, appDesc.getTableDescriptors());
}
Aggregations