Ejemplo n.º 1
0
 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';
     }
 }
Ejemplo n.º 2
0
function processAOW_Workflow()
{
    require_once 'modules/AOW_WorkFlow/AOW_WorkFlow.php';
    $workflow = new AOW_WorkFlow();
    return $workflow->run_flows();
}
Ejemplo n.º 3
0
 public function testrun_flows()
 {
     $aowWorkFlow = new AOW_WorkFlow();
     $result = $aowWorkFlow->run_flows();
     $this->assertTrue($result);
 }