public function IniFileLoaderTest::testLoadDoesNothingIfEmpty in Plug 7
File
- lib/
Symfony/ translation/ Tests/ Loader/ IniFileLoaderTest.php, line 30
Class
Namespace
Symfony\Component\Translation\Tests\LoaderCode
public function testLoadDoesNothingIfEmpty() {
$loader = new IniFileLoader();
$resource = __DIR__ . '/../fixtures/empty.ini';
$catalogue = $loader
->load($resource, 'en', 'domain1');
$this
->assertEquals(array(), $catalogue
->all('domain1'));
$this
->assertEquals('en', $catalogue
->getLocale());
$this
->assertEquals(array(
new FileResource($resource),
), $catalogue
->getResources());
}