Collection<Graph> submitted = builder.getSubmittedGraphs();
assertFalse("Compilation failed", submitted.isEmpty());
Graph graph = submitted.iterator().next();
System.out.println(graph);
ExchangeFactory factory = new TestExchangeFactory();
ProcessingElementMapper mapper = new SimpleProcessingElementMapper();
PartitionedGraphToWorkflows toWF =
new PartitionedGraphToWorkflows(factory, factory, mapper, null);
toWF.createWorkflows(graph);
System.out.println(toWF.getWorkflows());