示例#1
0
 /**
  * Test method call
  */
 public function testGetJobs()
 {
     $jobList = ['jobname1' => ['instance' => 'TestInstance', 'method' => 'testMethod', 'schedule' => '* * * * *']];
     $this->_configData->expects($this->once())->method('getJobs')->will($this->returnValue($jobList));
     $result = $this->_config->getJobs();
     $this->assertEquals($jobList, $result);
 }
示例#2
0
 /**
  * Return cron full cron jobs
  *
  * @return array
  */
 public function getJobs()
 {
     return $this->_configData->getJobs();
 }