コード例 #1
0
ファイル: FileTest.php プロジェクト: jasir/file-helpers
 /**
  * @dataProvider getRelativePathProvider
  */
 public function testGetRelativePath($path, $compareTo, $expected)
 {
     $result = File::getRelative($path, $compareTo);
     $this->assertEquals($expected, $result);
 }