Example #1
0
 /**
  * @dataProvider unixUris
  */
 public function testCanCreateUriObjectFromUnixPath($path, $expected)
 {
     $uri = FileUri::fromUnixPath($path);
     $uri->normalize();
     $this->assertEquals($expected, $uri->getPath());
 }