[Config] fix error handler restoration in test

This commit is contained in:
Nicolas Grekas 2014-12-22 10:02:19 +01:00
parent ff52a9f928
commit 266afeb161

View File

@ -159,12 +159,19 @@ class XmlUtilsTest extends \PHPUnit_Framework_TestCase
}); });
$file = __DIR__.'/../Fixtures/foo.xml'; $file = __DIR__.'/../Fixtures/foo.xml';
try {
try { try {
XmlUtils::loadFile($file); XmlUtils::loadFile($file);
$this->fail('An exception should have been raised'); $this->fail('An exception should have been raised');
} catch (\InvalidArgumentException $e) { } catch (\InvalidArgumentException $e) {
$this->assertEquals(sprintf('File %s does not contain valid XML, it is empty.', $file), $e->getMessage()); $this->assertEquals(sprintf('File %s does not contain valid XML, it is empty.', $file), $e->getMessage());
} }
} catch (\Exception $e) {
restore_error_handler();
error_reporting($errorReporting);
throw $e;
}
restore_error_handler(); restore_error_handler();
error_reporting($errorReporting); error_reporting($errorReporting);