You are here

public function QtFileLoaderTest::testLoadEmptyResource in Plug 7

File

lib/Symfony/translation/Tests/Loader/QtFileLoaderTest.php, line 60

Class

QtFileLoaderTest

Namespace

Symfony\Component\Translation\Tests\Loader

Code

public function testLoadEmptyResource() {
  $loader = new QtFileLoader();
  $resource = __DIR__ . '/../fixtures/empty.xlf';
  $this
    ->setExpectedException('Symfony\\Component\\Translation\\Exception\\InvalidResourceException', sprintf('Unable to load "%s".', $resource));
  $loader
    ->load($resource, 'en', 'domain1');
}