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