Exemplo n.º 1
0
 public function testSetBackgroundJobs()
 {
     $this->moduleOptions->setBackgroundJobs(['routes' => [], 'controllers' => []]);
     $transactions = $this->moduleOptions->getBackgroundJobs();
     $this->assertInternalType('array', $transactions);
     $this->assertArrayHasKey('routes', $transactions);
     $this->assertArrayHasKey('controllers', $transactions);
 }