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
No known key found for this signature in database
GPG key ID: B8A8AD166DF0E2E5

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"
}