/**
  * Filter events on batch mode.
  *
  *  covers Bartlett\Monolog\Handler\GrowlHandler::handleBatch
  */
 public function testHandleBatch()
 {
     $records = $this->getMultipleRecords();
     $this->growl->expects($this->exactly(5))->method('notify');
     $handler = new GrowlHandler($this->growl);
     $handler->handleBatch($records);
 }