Jyxo\Gettext\FactoryTest::testParse PHP Method

testParse() public method

public testParse ( )
    public function testParse()
    {
        $po = new Parser(__DIR__ . '/../../files/gettext/patterns.cs.po');
        $this->assertCount(300, $po);
        foreach ($po as $item) {
            $this->assertInstanceOf(Item::class, $item);
        }
    }
FactoryTest