hasRootPathMapping() public method

public hasRootPathMapping ( $repositoryPath )
 public function testHasRootPathMapping()
 {
     $this->initDefaultManager();
     $this->rootPackageFile->addPathMapping(new PathMapping('/path1', 'resources'));
     $this->packageFile1->addPathMapping(new PathMapping('/path2', 'resources'));
     $this->assertTrue($this->manager->hasRootPathMapping('/path1'));
     $this->assertFalse($this->manager->hasRootPathMapping('/path2'));
     $this->assertFalse($this->manager->hasRootPathMapping('/path3'));
 }