/**
* Create a new process for the given type and start it.
*/
public void createAndStartProcess3() throws Exception {
WfRequester cont = new DefaultRequester(workflowService());
WfProcess process = createProcess("ut-process", "jut3", cont);
assertTrue(process.state().startsWith("open.not_running.not_started"));
process.start();
Thread.sleep(2500);
assertTrue(process + " should be completed, is " + process.state(),
process.state().startsWith("closed.completed"));
// get the activities
Collection c = process.steps();
Iterator it = c.iterator();
int cnt = 0;
while (it.hasNext()) {
WfActivity a = (WfActivity)it.next();
if (a.state().startsWith