Example #1
0
 /**
  * Setter loggers
  * 
  * @covers Itkg\Batch\Configuration::setLoggers
  */
 public function testSetLoggers()
 {
     $loggers = array(array('writer' => 'file'));
     $this->object->setLoggers($loggers);
     $this->assertEquals($loggers, $this->object->getLoggers());
 }