diff options
author | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-10-21 21:31:36 +0200 |
---|---|---|
committer | Fabien Villepinte <fabien.villepinte@gmail.com> | 2019-10-21 21:31:36 +0200 |
commit | 7ce85c34fff400f46659b12775b72b344ab6af29 (patch) | |
tree | eef5db08beb2bfb32d9c57fcc89a58c920385ff7 | |
parent | 4194e0415b02827b0d5eeff13771eb6642955b0f (diff) | |
download | php-git-7ce85c34fff400f46659b12775b72b344ab6af29.tar.gz |
Revert "Add tests for ReflectionZendExtension"
This reverts commit 4194e0415b02827b0d5eeff13771eb6642955b0f.
There were already tests for this class.
3 files changed, 0 insertions, 70 deletions
diff --git a/ext/reflection/tests/ReflectionZendExtension_basic1.phpt b/ext/reflection/tests/ReflectionZendExtension_basic1.phpt deleted file mode 100644 index ee89002a1d..0000000000 --- a/ext/reflection/tests/ReflectionZendExtension_basic1.phpt +++ /dev/null @@ -1,25 +0,0 @@ ---TEST-- -ReflectionZendExtension: basic tests for accessors ---SKIPIF-- -<?php -$zendExtensions = get_loaded_extensions(true); -if (!in_array('Zend OPcache', $zendExtensions)) { - die('SKIP the Zend OPcache extension not available'); -} -?> ---FILE-- -<?php -$rze = new ReflectionZendExtension('Zend OPcache'); - -var_dump($rze->getName()); -var_dump($rze->getVersion() === PHP_VERSION); -var_dump($rze->getAuthor()); -var_dump($rze->getURL()); -var_dump($rze->getCopyright()); -?> ---EXPECT-- -string(12) "Zend OPcache" -bool(true) -string(17) "Zend Technologies" -string(20) "http://www.zend.com/" -string(13) "Copyright (c)" diff --git a/ext/reflection/tests/ReflectionZendExtension_error001.phpt b/ext/reflection/tests/ReflectionZendExtension_error001.phpt deleted file mode 100644 index 2e5b44be6c..0000000000 --- a/ext/reflection/tests/ReflectionZendExtension_error001.phpt +++ /dev/null @@ -1,12 +0,0 @@ ---TEST-- -ReflectionZendExtension: error with invalid extension name ---FILE-- -<?php -try { - new ReflectionZendExtension('foo-bar-baz'); -} catch (ReflectionException $e) { - echo $e->getMessage(); -} -?> ---EXPECT-- -Zend Extension foo-bar-baz does not exist diff --git a/ext/reflection/tests/ReflectionZendExtension_toString.phpt b/ext/reflection/tests/ReflectionZendExtension_toString.phpt deleted file mode 100644 index 4db8cce879..0000000000 --- a/ext/reflection/tests/ReflectionZendExtension_toString.phpt +++ /dev/null @@ -1,33 +0,0 @@ ---TEST-- -ReflectionZendExtension: basic test for __toString() ---SKIPIF-- -<?php -$zendExtensions = get_loaded_extensions(true); -if (!in_array('Zend OPcache', $zendExtensions)) { - die('SKIP the Zend OPcache extension not available'); -} -?> ---FILE-- -<?php -$rze = new ReflectionZendExtension('Zend OPcache'); - -$str = (string)$rze; - -$methods = [ - 'getName', - 'getVersion', - 'getAuthor', - 'getURL', - 'getCopyright', -]; - -foreach ($methods as $method) { - $prop = $rze->{$method}(); - if (strpos($str, $prop) === false) { - echo "The result of $method() ($prop) is not found in: $str\n"; - } -} -?> -===DONE=== ---EXPECT-- -===DONE=== |