IniFileDumperTest.php 928 B

1234567891011121314151617181920212223242526272829303132
  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\IniFileDumper;
  13. class IniFileDumperTest 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 IniFileDumper();
  21. $dumper->dump($catalogue, array('path' => $tempDir));
  22. $this->assertEquals(file_get_contents(__DIR__.'/../fixtures/resources.ini'), file_get_contents($tempDir.'/messages.en.ini'));
  23. unlink($tempDir.'/messages.en.ini');
  24. }
  25. }