Ejemplo n.º 1
0
 /**
  * @test
  *
  * @expectedException \RunOpenCode\Backup\Exception\ProcessorException
  */
 public function couldNotProcessEmptyCollection()
 {
     $processor = new ZipArchiveProcessor('archive.zip');
     $processor->setEventDispatcher($eventDispatcher = new EventDispatcher());
     $processor->process(array());
 }