public function XmlFileLoaderTest::testDoNotModifyStateIfExceptionIsThrown in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Mapping/Loader/XmlFileLoaderTest.php \Symfony\Component\Validator\Tests\Mapping\Loader\XmlFileLoaderTest::testDoNotModifyStateIfExceptionIsThrown()
See also
https://github.com/symfony/symfony/pull/12158
File
- vendor/
symfony/ validator/ Tests/ Mapping/ Loader/ XmlFileLoaderTest.php, line 121
Class
Namespace
Symfony\Component\Validator\Tests\Mapping\LoaderCode
public function testDoNotModifyStateIfExceptionIsThrown() {
$loader = new XmlFileLoader(__DIR__ . '/withdoctype.xml');
$metadata = new ClassMetadata('Symfony\\Component\\Validator\\Tests\\Fixtures\\Entity');
try {
$loader
->loadClassMetadata($metadata);
} catch (MappingException $e) {
$this
->setExpectedException('\\Symfony\\Component\\Validator\\Exception\\MappingException');
$loader
->loadClassMetadata($metadata);
}
}