Exemple #1
0
 /**
  * testNormalizePath method
  *
  * @return void
  */
 public function testNormalizePath()
 {
     $path = '/path/to/file';
     $result = Folder::normalizePath($path);
     $this->assertEquals('/', $result);
     $path = '\\path\\\\to\\\\file';
     $result = Folder::normalizePath($path);
     $this->assertEquals('/', $result);
     $path = 'C:\\path\\to\\file';
     $result = Folder::normalizePath($path);
     $this->assertEquals('\\', $result);
 }