ru_php/ext/reflection/tests/ReflectionZendExtension_error.phpt

18 lines
323 B
PHP

--TEST--
Test ReflectionZendExtension class errors
--CREDITS--
Gabriel Caruso (carusogabriel34@gmail.com)
--EXTENSIONS--
opcache
--FILE--
<?php
try {
new ReflectionZendExtension('zend_opcache');
} catch (ReflectionException $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Zend Extension "zend_opcache" does not exist