public function testComments()
 {
     $string = new String('Reference text', 'Translated value in whatever languague you want', array('foo'));
     $this->assertEquals($string->getComments(), array('foo'));
     $string->addComment('bar');
     $this->assertEquals($string->getComments(), array('foo', 'bar'));
     $string->addComment('bar');
     $this->assertEquals($string->getComments(), array('foo', 'bar'));
     $string->removeComment('foo');
     $comments = $string->getComments();
     $this->assertContains('bar', $comments);
     $this->assertFalse(isset($comments['foo']));
     $string->addComments(array('foo', 'bar', 'baz'));
     $comments = $string->getComments();
     $this->assertContains('foo', $comments);
     $this->assertContains('bar', $comments);
     $this->assertContains('baz', $comments);
     $string->removeFlag('fuzzy');
     $this->assertFalse($string->isFuzzy());
     $string->setFuzzy(true);
     $this->assertTrue($string->isFuzzy());
     $string = new String('foo', 'bar', array('foo'), array('bar'), array('baz'), array('qux'));
     $string->addComment('bar');
     $string->addExtracted('baz');
     $string->addReference('qux');
     $string->addFlag('fuzzy');
     // accessors
     $this->assertTrue($string->isFuzzy());
     $this->assertTrue($string->hasComment('foo'));
     $this->assertTrue($string->hasExtracted('bar'));
     $this->assertTrue($string->hasReference('baz'));
     $this->assertTrue($string->hasFlag('qux'));
 }
예제 #2
0
    public function testMultilines()
    {
        $string = new String('This is a very long string, to test how PoeditDumper will dump it, using multiline syntax. It should be displayed on three different lines, with 78 chars maximum each.', '');
        $this->assertEquals($string->__toString(), <<<EOT
msgid ""
"This is a very long string, to test how PoeditDumper will dump it, using "
"multiline syntax. It should be displayed on three different lines, with 78 "
"chars maximum each."
msgstr ""


EOT
);
    }