PoFileDumperTest.php 921 B

12345678910111213141516171819202122232425262728293031
  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\PoFileDumper;
  13. class PoFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testDump()
  16. {
  17. $catalogue = new MessageCatalogue('en');
  18. $catalogue->add(array('foo' => 'bar'));
  19. $tempDir = sys_get_temp_dir();
  20. $dumper = new PoFileDumper();
  21. $dumper->dump($catalogue, array('path' => $tempDir));
  22. $this->assertEquals(file_get_contents(__DIR__.'/../fixtures/resources.po'), file_get_contents($tempDir.'/messages.en.po'));
  23. unlink($tempDir.'/messages.en.po');
  24. }
  25. }