public function YamlFileLoaderTest::testLoadDoesNothingIfEmpty in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/routing/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
- 8.0 vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\YamlFileLoaderTest::testLoadDoesNothingIfEmpty()
Same name and namespace in other branches
- 8 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
Namespace
Symfony\Component\Translation\Tests\LoaderCode
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());
}