Exemplo n.º 1
0
 /**
  * @expectedException \Splot\Framework\Resources\Exceptions\ResourceNotFoundException
  * @covers ::find
  * @covers ::expand
  * @covers ::findResource
  * @covers ::parseResourceName
  * @covers ::findInApplicationDir
  * @covers ::findInModuleDir
  * @covers ::buildResourcePath
  * @covers ::parseResourceName
  */
 public function testFindingNotExistingFileInModuleByCallingFindInModuleDir()
 {
     $this->application->addTestModule(new SplotResourcesTestModule());
     $finder = new Finder($this->application);
     $finder->findinModuleDir('SplotResourcesTestModule::undefined.js', 'public');
 }