/**
  * @covers Monolog\Handler\AbstractHandler::handleBatch
  */
 public function testHandleBatch()
 {
     $handler = new TestHandler();
     $handler->handleBatch(array($this->getRecord(), $this->getRecord()));
     $this->assertEquals(2, count($handler->getRecords()));
 }