php-src/Zend/tests/instantiate_all_classes.phpt
Nikita Popov 62c6d6952e Add test instantiating all objects
Intended to find issues in opaque object destructors.

Closes GH-6251.
2020-10-01 18:37:24 +02:00

16 lines
215 B
PHP

--TEST--
Try to instantiate all classes without arguments
--FILE--
<?php
foreach (get_declared_classes() as $class) {
try {
new $class;
} catch (Throwable) {}
}
?>
===DONE===
--EXPECT--
===DONE===