protected function action_testFlow() { echo 'Started<br />'; require_once 'modules/AOW_WorkFlow/AOW_WorkFlow.php'; $workflow = new AOW_WorkFlow(); if ($workflow->run_flows()) { echo 'PASSED'; } }
function processAOW_Workflow() { require_once 'modules/AOW_WorkFlow/AOW_WorkFlow.php'; $workflow = new AOW_WorkFlow(); return $workflow->run_flows(); }
public function testrun_flows() { $aowWorkFlow = new AOW_WorkFlow(); $result = $aowWorkFlow->run_flows(); $this->assertTrue($result); }