You are here

public function IniFileLoaderTest::testLoadDoesNothingIfEmpty in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Tests/Loader/IniFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\IniFileLoaderTest::testLoadDoesNothingIfEmpty()

File

vendor/symfony/translation/Tests/Loader/IniFileLoaderTest.php, line 30

Class

IniFileLoaderTest

Namespace

Symfony\Component\Translation\Tests\Loader

Code

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());
}