Example #1
0
 /**
  * Setter notifiers
  * 
  * @covers Itkg\Batch\Configuration::setNotifiers
  */
 public function testSetNotifiers()
 {
     $notifiers = array(new \Itkg\Batch\Mock\MyNotifier());
     $this->object->setNotifiers($notifiers);
     $this->assertEquals($notifiers, $this->object->getNotifiers());
 }