1--TEST--
2Test ReflectionZendExtension class errors
3--CREDITS--
4Gabriel Caruso (carusogabriel34@gmail.com)
5--EXTENSIONS--
6opcache
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