use of alluxio.job.workflow.composite.CompositeExecution in project alluxio by Alluxio.
the class WorkflowExecutionRegistryTest method getExecutionFactoryTest.
@Test
public void getExecutionFactoryTest() throws Exception {
WorkflowExecution execution = WorkflowExecutionRegistry.INSTANCE.getExecution(new CompositeConfig(Lists.newArrayList(), true));
assertTrue(execution instanceof CompositeExecution);
}
Aggregations