1--TEST--
2Test ReflectionZendExtension class erros
3--CREDITS--
4Gabriel Caruso (carusogabriel34@gmail.com)
5--SKIPIF--
6<?php if(!extension_loaded('Zend OPcache')) die('skip Zend OPcache extension not loaded'); ?>
7--FILE--
8<?php
9try {
10    new ReflectionZendExtension('zend_opcache');
11} catch (ReflectionException $e) {
12    echo $e->getMessage();
13}
14
15?>
16--EXPECT--
17Zend Extension zend_opcache does not exist
18