getPathMapping() public method

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