public function PhpFileLoaderTest::testLoadNonExistingResource in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\PhpFileLoaderTest::testLoadNonExistingResource()
@expectedException \Symfony\Component\Translation\Exception\NotFoundResourceException
File
- vendor/
symfony/ translation/ Tests/ Loader/ PhpFileLoaderTest.php, line 33
Class
Namespace
Symfony\Component\Translation\Tests\LoaderCode
public function testLoadNonExistingResource() {
$loader = new PhpFileLoader();
$resource = __DIR__ . '/../fixtures/non-existing.php';
$loader
->load($resource, 'en', 'domain1');
}