public function XmlFileLoaderTest::testLoadThrowsExceptionWithInvalidFileEvenWithoutSchemaValidation in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Tests/Loader/XmlFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\XmlFileLoaderTest::testLoadThrowsExceptionWithInvalidFileEvenWithoutSchemaValidation()
@expectedException \InvalidArgumentException @dataProvider getPathsToInvalidFiles
File
- vendor/
symfony/ routing/ Tests/ Loader/ XmlFileLoaderTest.php, line 118
Class
Namespace
Symfony\Component\Routing\Tests\LoaderCode
public function testLoadThrowsExceptionWithInvalidFileEvenWithoutSchemaValidation($filePath) {
$loader = new CustomXmlFileLoader(new FileLocator(array(
__DIR__ . '/../Fixtures',
)));
$loader
->load($filePath);
}