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