Пример #1
0
 public function testFormatCatalogue()
 {
     $catalogue = new MessageCatalogue('en');
     $catalogue->add(array('foo' => 'bar'));
     $dumper = new IcuResFileDumper();
     $this->assertStringEqualsFile(__DIR__ . '/../fixtures/resourcebundle/res/en.res', $dumper->formatCatalogue($catalogue, 'messages'));
 }
Пример #2
0
 public function testFormatCatalogue()
 {
     if (!function_exists('mb_convert_encoding')) {
         $this->markTestSkipped('This test requires mbstring to work.');
     }
     $catalogue = new MessageCatalogue('en');
     $catalogue->add(array('foo' => 'bar'));
     $dumper = new IcuResFileDumper();
     $this->assertStringEqualsFile(__DIR__ . '/../fixtures/resourcebundle/res/en.res', $dumper->formatCatalogue($catalogue, 'messages'));
 }