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