You are here

public function QtFileLoaderTest::testLoadNonLocalResource in Plug 7

@expectedException \Symfony\Component\Translation\Exception\InvalidResourceException

File

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

Class

QtFileLoaderTest

Namespace

Symfony\Component\Translation\Tests\Loader

Code

public function testLoadNonLocalResource() {
  $loader = new QtFileLoader();
  $resource = 'http://domain1.com/resources.ts';
  $loader
    ->load($resource, 'en', 'domain1');
}