public function testrun_flow()
 {
     $aowWorkFlow = new AOW_WorkFlow();
     //execute the method and test if it works and does not throws an exception.
     try {
         $aowWorkFlow->run_flow();
         $this->assertTrue(true);
     } catch (Exception $e) {
         $this->fail();
     }
 }