Keine Beschreibung

JsonFileDumperTest.php 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Tests\Dumper;
  11. use Symfony\Component\Translation\MessageCatalogue;
  12. use Symfony\Component\Translation\Dumper\JsonFileDumper;
  13. class JsonFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testFormatCatalogue()
  16. {
  17. $catalogue = new MessageCatalogue('en');
  18. $catalogue->add(array('foo' => 'bar'));
  19. $dumper = new JsonFileDumper();
  20. $this->assertStringEqualsFile(__DIR__.'/../fixtures/resources.json', $dumper->formatCatalogue($catalogue, 'messages'));
  21. }
  22. public function testDumpWithCustomEncoding()
  23. {
  24. $catalogue = new MessageCatalogue('en');
  25. $catalogue->add(array('foo' => '"bar"'));
  26. $dumper = new JsonFileDumper();
  27. $this->assertStringEqualsFile(__DIR__.'/../fixtures/resources.dump.json', $dumper->formatCatalogue($catalogue, 'messages', array('json_encoding' => JSON_HEX_QUOT)));
  28. }
  29. }