use of com.adaptris.core.WorkflowList in project interlok by adaptris.
the class WorkflowLifecycleStrategyCase method testStop.
@Test
public void testStop() throws Exception {
WorkflowList wfl = new WorkflowList();
wfl.add(createWorkflow(idGenerator.create(wfl)));
wfl.setLifecycleStrategy(createStrategy());
Channel c = createChannel(wfl);
c.requestStart();
c.requestStop();
}
Aggregations