function it_returns_generated_archives(JobExecution $jobExecution, ArchiverInterface $archiver, ArchiverInterface $archiver2)
 {
     $jobExecution->isRunning()->willReturn(false);
     $archiver->getName()->willReturn('output');
     $archiver->getArchives($jobExecution)->willReturn(['a', 'b']);
     $this->registerArchiver($archiver);
     $archiver2->getName()->willReturn('input');
     $archiver2->getArchives($jobExecution)->willReturn(['a', 'b']);
     $this->registerArchiver($archiver2);
     $this->getArchives($jobExecution)->shouldReturn(['output' => ['a', 'b'], 'input' => ['a', 'b']]);
 }