Updated Laravel init phpunit.xml stub file

This commit is contained in:
MHO
2023-09-08 16:40:25 +02:00
parent d8e283777e
commit 21b8507252

View File

@ -1,31 +1,28 @@
<?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" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" <testsuites>
bootstrap="vendor/autoload.php" <testsuite name="Unit">
colors="true" <directory suffix="Test.php">./tests/Unit</directory>
> </testsuite>
<testsuites> <testsuite name="Feature">
<testsuite name="Unit"> <directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">./tests/Unit</directory> </testsuite>
</testsuite> </testsuites>
<testsuite name="Feature"> <coverage/>
<directory suffix="Test.php">./tests/Feature</directory> <php>
</testsuite> <env name="APP_ENV" value="testing"/>
</testsuites> <env name="BCRYPT_ROUNDS" value="4"/>
<coverage> <env name="CACHE_DRIVER" value="array"/>
<include> <!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<directory suffix=".php">./app</directory> <!-- <env name="DB_DATABASE" value=":memory:"/> -->
</include> <env name="MAIL_MAILER" value="array"/>
</coverage> <env name="QUEUE_CONNECTION" value="sync"/>
<php> <env name="SESSION_DRIVER" value="array"/>
<env name="APP_ENV" value="testing"/> <env name="TELESCOPE_ENABLED" value="false"/>
<env name="BCRYPT_ROUNDS" value="4"/> </php>
<env name="CACHE_DRIVER" value="array"/> <source>
<!-- <env name="DB_CONNECTION" value="sqlite"/> --> <include>
<!-- <env name="DB_DATABASE" value=":memory:"/> --> <directory suffix=".php">./app</directory>
<env name="MAIL_MAILER" value="array"/> </include>
<env name="QUEUE_CONNECTION" value="sync"/> </source>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit> </phpunit>