public function setUp()
 {
     $this->commandCollector = $this->prophesize(CommandCollector::class);
     $this->argumentsProcessor = $this->prophesize(ArgumentsProcessor::class);
     $this->sut = new CommandLauncher($this->commandCollector->reveal(), $this->argumentsProcessor->reveal());
 }