Skip to content

Commit

Permalink
Address PHPUnit warnings/deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude committed Sep 4, 2024
1 parent 7318eb5 commit c49653e
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,24 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.7/phpunit.xsd"
bootstrap="vendor/autoload.php">

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<php>
<env name="SHELL_VERBOSITY" value="-1" />
<server name="KERNEL_CLASS" value="\Webfactory\ShortcodeBundle\Tests\Fixtures\TestKernel" />
</php>

<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
<exclude>tests/Functional/ShortcodeTest.php</exclude>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>

</phpunit>

0 comments on commit c49653e

Please sign in to comment.