Пример #1
0
 /**
  * @dataProvider dataPaths
  */
 public function testIsRelative($path, $result)
 {
     if ($result['root'] === '') {
         $this->assertTrue(Path::isRelative($path));
     } else {
         $this->assertFalse(Path::isRelative($path));
     }
 }