* @throws IOException
* @throws XBayaException
*/
public void testArray() throws IOException, XBayaException {
Workflow workflow = this.workflowCreator.createArrayWorkflow();
JythonScript script = new JythonScript(workflow, this.configuration);
script.create();
String jythonString = script.getJythonString();
String filename = "tmp/array-test.py";
IOUtil.writeToFile(jythonString, filename);
ArrayGeneratorService arrayGenerator = new ArrayGeneratorService();
arrayGenerator.run();