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