Neos\Flow\Tests\Unit\I18n\AbstractXmlParserTest::throwsExceptionWhenBadFilenameGiven PHP 메소드

throwsExceptionWhenBadFilenameGiven() 공개 메소드

    public function throwsExceptionWhenBadFilenameGiven()
    {
        $mockFilenamePath = 'foo';
        $parser = $this->getAccessibleMock(I18n\AbstractXmlParser::class, ['doParsingFromRoot']);
        $parser->getParsedData($mockFilenamePath);
    }