1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Remove duplicated reflection test

[ci skip]

This is already tested in 016.phpt.
This commit is contained in:
Niels Dossche
2025-05-25 14:24:32 +02:00
parent 085abe932a
commit c7db07eae8

View File

@@ -1,20 +0,0 @@
--TEST--
ReflectionExtension::getDependencies() method on an extension with a required and conflicting dependency
--CREDITS--
Felix De Vliegher <felix.devliegher@gmail.com>
--EXTENSIONS--
dom
--FILE--
<?php
$dom = new ReflectionExtension('dom');
var_dump($dom->getDependencies());
?>
--EXPECT--
array(3) {
["libxml"]=>
string(8) "Required"
["lexbor"]=>
string(8) "Required"
["domxml"]=>
string(9) "Conflicts"
}