_configData = $this->getMockBuilder( \Magento\Cron\Model\Config\Data::class )->disableOriginalConstructor()->getMock(); $this->_config = new \Magento\Cron\Model\Config($this->_configData); } /** * 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); } }