コード例 #1
0
ファイル: FileTest.php プロジェクト: Doability/magento2dev
 /**
  * @dataProvider dataProviderForTestGetRelativePath
  */
 public function testGetRelativePath($basePath, $path, $expected)
 {
     $file = new File();
     $this->assertEquals($expected, $file->getRelativePath($basePath, $path));
 }