Example #1
0
 /**
  * removePath description
  *
  * @param  string
  * @param  string
  * @param  string
  *
  * @return  string  removePathReturn
  *
  * @since  2.0
  */
 public function testRemovePath()
 {
     $path = new PathLocator('/var/foo/bar');
     $this->collection->addPath($path, 'bar');
     $this->collection->removePath('bar');
     $path = $this->collection->getPath('bar');
     $this->assertNull($path);
 }