/**
  * @test
  */
 public function testInstallerCreationShouldNotCreateBinDirectory()
 {
     $this->fs->removeDirectory($this->binDir);
     new SharedPackageInstaller($this->io, $this->composer, $this->fs, $this->dataManager);
     $this->assertFileNotExists($this->binDir);
 }
 /**
  * @test
  */
 public function testInstallerCreationShouldNotCreateBinDirectory()
 {
     $this->fs->removeDirectory($this->binDir);
     $this->createInstaller();
     $this->assertFileNotExists($this->binDir);
 }