コード例 #1
0
ファイル: PathTest.php プロジェクト: caffeinated/beverage
 /**
  * @dataProvider provideAbsolutePathsWithDifferentRoots
  * @expectedException \InvalidArgumentException
  */
 public function testMakeRelativeFailsIfDifferentRoot($absolutePath, $basePath)
 {
     Path::makeRelative($absolutePath, $basePath);
 }