/**
  * @covers \ContaoCommunityAlliance\BuildSystem\Repository\GitRepository::init
  * @covers \ContaoCommunityAlliance\BuildSystem\Repository\Command\InitCommandBuilder::execute
  */
 public function testInit()
 {
     $this->uninitializedGitRepository->init()->execute();
     $this->assertTrue(is_dir($this->uninitializedRepositoryPath . DIRECTORY_SEPARATOR . '.git'));
 }