// create the process
WfProcess process = createProcess("ut-process", "jut4", req);
assertTrue(process.state().equals("open.not_running.not_started"));
// start the process
process.start();
assertTrue(process.state().startsWith("open.running"));
Thread.sleep (1000);
// start the activities and stop it.
Object[] actArray = process.steps().toArray();
assertTrue(actArray.length == 4);
Arrays.sort (actArray, new Comparator () {