function PoStreamWriterTest::setUp
File
-
core/
tests/ Drupal/ Tests/ Component/ Gettext/ PoStreamWriterTest.php, line 38
Class
- PoStreamWriterTest
- @coversDefaultClass \Drupal\Component\Gettext\PoStreamWriter[[api-linebreak]] @group Gettext
Namespace
Drupal\Tests\Component\GettextCode
protected function setUp() : void {
parent::setUp();
$poHeader = $this->prophesize(PoHeader::class);
$poHeader->__toString()
->willReturn('');
$this->poWriter = new PoStreamWriter();
$this->poWriter
->setHeader($poHeader->reveal());
$root = vfsStream::setup();
$this->poFile = new vfsStreamFile('powriter.po');
$root->addChild($this->poFile);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.