[php] Add more checks to some PHP testcases

This commit is contained in:
Olly Betts 2021-12-18 14:38:49 +13:00
commit cc5395a669
3 changed files with 28 additions and 2 deletions

View file

@ -2,6 +2,13 @@
require "tests.php";
// No new functions
check::functions(array());
// No new classes
check::classes(array());
// No new vars
check::globals(array());
check::equal('1.5',(new ReflectionExtension('php_pragma'))->getVersion(),"1.5==version(php_pragma)");
check::done();