getRootPathMapping() public method

public getRootPathMapping ( $repositoryPath )
 /**
  * @expectedException \Puli\Manager\Api\Repository\NoSuchPathMappingException
  */
 public function testGetRootPathMappingFailsIfNotFoundInRootPackage()
 {
     $this->initDefaultManager();
     $this->packageFile1->addPathMapping($mapping2 = new PathMapping('/path', 'resources'));
     $this->manager->getRootPathMapping('/path', 'vendor/root');
 }