Keine Beschreibung

QtFileDumperTest.php 795B

1234567891011121314151617181920212223242526272829
  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\QtFileDumper;
  13. class QtFileDumperTest extends \PHPUnit_Framework_TestCase
  14. {
  15. public function testFormatCatalogue()
  16. {
  17. $catalogue = new MessageCatalogue('en');
  18. $catalogue->add(array('foo' => 'bar'), 'resources');
  19. $dumper = new QtFileDumper();
  20. $this->assertStringEqualsFile(__DIR__.'/../fixtures/resources.ts', $dumper->formatCatalogue($catalogue, 'resources'));
  21. }
  22. }