Remove phpunit.phar; fix test case file

This commit is contained in:
Cody Cook 2024-05-14 11:26:54 -07:00
commit 91dc776e4d
4 changed files with 27 additions and 108052 deletions

View file

@ -1,10 +1,16 @@
<phpunit bootstrap="vendor/autoload.php">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="coverage.xml"/>
</logging>
</phpunit>
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="vendor/autoload.php"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
cacheDirectory=".phpunit.cache">
<coverage>
<report>
<clover outputFile="coverage.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Default">
<directory suffix=".php">tests</directory>
</testsuite>
</testsuites>
</phpunit>