You are here

public function IcuDatFileLoaderTest::testLoadNonExistingResource in Plug 7

@expectedException \Symfony\Component\Translation\Exception\NotFoundResourceException

File

lib/Symfony/translation/Tests/Loader/IcuDatFileLoaderTest.php, line 63

Class

IcuDatFileLoaderTest

Namespace

Symfony\Component\Translation\Tests\Loader

Code

public function testLoadNonExistingResource() {
  $loader = new IcuDatFileLoader();
  $loader
    ->load(__DIR__ . '/../fixtures/non-existing.txt', 'en', 'domain1');
}