You are here

public function YamlFileLoaderTest::testLoadDoesNothingIfEmpty in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
  2. 8 vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()

File

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

Class

YamlFileLoaderTest

Namespace

Symfony\Component\Translation\Tests\Loader

Code

public function testLoadDoesNothingIfEmpty() {
  $loader = new YamlFileLoader();
  $resource = __DIR__ . '/../fixtures/empty.yml';
  $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());
}