public function XliffFileLoaderTest::testDocTypeIsNotAllowed in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/translation/Tests/Loader/XliffFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\XliffFileLoaderTest::testDocTypeIsNotAllowed()
@expectedException \Symfony\Component\Translation\Exception\InvalidResourceException @expectedExceptionMessage Document types are not allowed.
File
- vendor/
symfony/ translation/ Tests/ Loader/ XliffFileLoaderTest.php, line 118
Class
Namespace
Symfony\Component\Translation\Tests\LoaderCode
public function testDocTypeIsNotAllowed() {
$loader = new XliffFileLoader();
$loader
->load(__DIR__ . '/../fixtures/withdoctype.xlf', 'en', 'domain1');
}