/**
  * @expectedException \LogicException
  * @expectedExceptionMessage Path "/tmp/missing/directory" was expected to be a directory.
  */
 public function testThrowsExceptionWhenProjectDirectoryDoesNotExist()
 {
     $handler = new ProjectDirectoryHelper('/tmp/missing/directory', 3);
     $handler->cleanup($this->project);
 }