コード例 #1
0
ファイル: FinderTest.php プロジェクト: splot/framework
 /**
  * @expectedException \Splot\Framework\Resources\Exceptions\ResourceNotFoundException
  * @covers ::find
  * @covers ::expand
  * @covers ::findResource
  * @covers ::parseResourceName
  * @covers ::findInApplicationDir
  * @covers ::findInModuleDir
  * @covers ::buildResourcePath
  * @covers ::parseResourceName
  */
 public function testFindingNotExistingResourceInApplicationDir()
 {
     $finder = new Finder($this->application);
     $finder->findResource('::index.js', 'public');
 }