Migrate phpunit.xml

vendor/bin/phpunit --migrate-configuration
This commit is contained in:
Marcus Moore 2024-08-06 13:37:53 -07:00
parent 047b77e038
commit 6cfbf835c7
No known key found for this signature in database

View file

@ -1,21 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false" backupGlobals="false"
backupStaticAttributes="false" backupStaticProperties="false"
bootstrap="bootstrap/autoload.php" bootstrap="bootstrap/autoload.php"
cacheDirectory=".phpunit.cache"
colors="true" colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false" processIsolation="false"
stopOnFailure="false" stopOnFailure="false"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
> >
<coverage>
<include>
<directory suffix=".php">app/</directory>
</include>
</coverage>
<testsuites> <testsuites>
<testsuite name="Unit"> <testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory> <directory suffix="Test.php">./tests/Unit</directory>
@ -33,4 +26,9 @@
<env name="SESSION_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/>
<ini name="display_errors" value="true"/> <ini name="display_errors" value="true"/>
</php> </php>
<source>
<include>
<directory suffix=".php">app/</directory>
</include>
</source>
</phpunit> </phpunit>